os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComEntry.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 #ifndef _CEComEntry_H
    18 #define _CEComEntry_H
    19 
    20 #include <f32file.h>
    21 
    22 NONSHARABLE_CLASS(CEComEntry) :public CBase
    23 /**
    24 @internalComponent
    25 Created to avoid passing larger TEntry objects to functions.
    26  */
    27 
    28 {
    29 friend class CEComEntryTest;
    30 public:
    31 
    32 	static CEComEntry* NewL(const TDesC& aDllName,const TUid& aSecondUid, const TUid& aThirdUid);
    33 
    34 	virtual ~CEComEntry();
    35 
    36 	//Inline functions
    37 	
    38 	/**
    39 	Intended Usage	:	Get the Name of EComEntry
    40 	@return			TDesC& Name of EComEntry
    41 	@pre 			Object is fully constructed and initialized
    42 		
    43 	**/
    44 	const TDesC& GetName() const 
    45 		{ return *iName; }
    46 	/**
    47 	Intended Usage	:	Get the second TUid of EComEntry
    48 	@return			TUid of EComEntry
    49 	@pre 			Object is fully constructed and initialized
    50 		
    51 	**/
    52 	const TUid& GetSecondUid() const 
    53 		{ return iSecondUid; }
    54 
    55 	/**
    56 	Intended Usage	:	Get the third TUid of EComEntry
    57 	@return			TUid of EComEntry
    58 	@pre 			Object is fully constructed and initialized
    59 		
    60 	**/
    61 	const TUid& GetThirdUid() const 
    62 		{ return iThirdUid; }
    63 
    64 //This member function is only required in server side and hence configured out for client side		
    65 #ifndef ECOM_CLIENT		
    66 	/**
    67 	Intended Usage	:	Get the Modified Time of EComEntry
    68 	return			TTime& Modified time of EComEntry
    69 	@pre 			Object is fully constructed and initialized
    70 		
    71 	**/
    72 	const TTime& GetModified() const
    73 		{ return iModified; }
    74 	/**
    75 	Intended Usage	:	Set the Modified Time of EComEntry
    76 	@param			aModified New Modified Time
    77 	@pre 			Object is fully constructed and initialized
    78 		
    79 	**/
    80 	void SetModified(const TTime& aModified)  
    81 		{ iModified = aModified.Int64(); }
    82 #endif
    83 		
    84 private:
    85 
    86 	CEComEntry(const TUid& aSecondUid,const TUid& aThirdUid);
    87 	void ConstructL(const TDesC& aDllName);
    88 
    89 private:
    90 	HBufC* iName;
    91 	TUid iSecondUid;
    92 	TUid iThirdUid;
    93 //This member variable is only required in server side and hence configured out for client side
    94 #ifndef ECOM_CLIENT	
    95 	TTime iModified;
    96 #endif
    97 };
    98 
    99 
   100 #endif
   101