os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComEntry.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComEntry.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,101 @@
     1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +
    1.20 +#ifndef _CEComEntry_H
    1.21 +#define _CEComEntry_H
    1.22 +
    1.23 +#include <f32file.h>
    1.24 +
    1.25 +NONSHARABLE_CLASS(CEComEntry) :public CBase
    1.26 +/**
    1.27 +@internalComponent
    1.28 +Created to avoid passing larger TEntry objects to functions.
    1.29 + */
    1.30 +
    1.31 +{
    1.32 +friend class CEComEntryTest;
    1.33 +public:
    1.34 +
    1.35 +	static CEComEntry* NewL(const TDesC& aDllName,const TUid& aSecondUid, const TUid& aThirdUid);
    1.36 +
    1.37 +	virtual ~CEComEntry();
    1.38 +
    1.39 +	//Inline functions
    1.40 +	
    1.41 +	/**
    1.42 +	Intended Usage	:	Get the Name of EComEntry
    1.43 +	@return			TDesC& Name of EComEntry
    1.44 +	@pre 			Object is fully constructed and initialized
    1.45 +		
    1.46 +	**/
    1.47 +	const TDesC& GetName() const 
    1.48 +		{ return *iName; }
    1.49 +	/**
    1.50 +	Intended Usage	:	Get the second TUid of EComEntry
    1.51 +	@return			TUid of EComEntry
    1.52 +	@pre 			Object is fully constructed and initialized
    1.53 +		
    1.54 +	**/
    1.55 +	const TUid& GetSecondUid() const 
    1.56 +		{ return iSecondUid; }
    1.57 +
    1.58 +	/**
    1.59 +	Intended Usage	:	Get the third TUid of EComEntry
    1.60 +	@return			TUid of EComEntry
    1.61 +	@pre 			Object is fully constructed and initialized
    1.62 +		
    1.63 +	**/
    1.64 +	const TUid& GetThirdUid() const 
    1.65 +		{ return iThirdUid; }
    1.66 +
    1.67 +//This member function is only required in server side and hence configured out for client side		
    1.68 +#ifndef ECOM_CLIENT		
    1.69 +	/**
    1.70 +	Intended Usage	:	Get the Modified Time of EComEntry
    1.71 +	return			TTime& Modified time of EComEntry
    1.72 +	@pre 			Object is fully constructed and initialized
    1.73 +		
    1.74 +	**/
    1.75 +	const TTime& GetModified() const
    1.76 +		{ return iModified; }
    1.77 +	/**
    1.78 +	Intended Usage	:	Set the Modified Time of EComEntry
    1.79 +	@param			aModified New Modified Time
    1.80 +	@pre 			Object is fully constructed and initialized
    1.81 +		
    1.82 +	**/
    1.83 +	void SetModified(const TTime& aModified)  
    1.84 +		{ iModified = aModified.Int64(); }
    1.85 +#endif
    1.86 +		
    1.87 +private:
    1.88 +
    1.89 +	CEComEntry(const TUid& aSecondUid,const TUid& aThirdUid);
    1.90 +	void ConstructL(const TDesC& aDllName);
    1.91 +
    1.92 +private:
    1.93 +	HBufC* iName;
    1.94 +	TUid iSecondUid;
    1.95 +	TUid iThirdUid;
    1.96 +//This member variable is only required in server side and hence configured out for client side
    1.97 +#ifndef ECOM_CLIENT	
    1.98 +	TTime iModified;
    1.99 +#endif
   1.100 +};
   1.101 +
   1.102 +
   1.103 +#endif
   1.104 +