sl@0: // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: #ifndef _CEComEntry_H sl@0: #define _CEComEntry_H sl@0: sl@0: #include sl@0: sl@0: NONSHARABLE_CLASS(CEComEntry) :public CBase sl@0: /** sl@0: @internalComponent sl@0: Created to avoid passing larger TEntry objects to functions. sl@0: */ sl@0: sl@0: { sl@0: friend class CEComEntryTest; sl@0: public: sl@0: sl@0: static CEComEntry* NewL(const TDesC& aDllName,const TUid& aSecondUid, const TUid& aThirdUid); sl@0: sl@0: virtual ~CEComEntry(); sl@0: sl@0: //Inline functions sl@0: sl@0: /** sl@0: Intended Usage : Get the Name of EComEntry sl@0: @return TDesC& Name of EComEntry sl@0: @pre Object is fully constructed and initialized sl@0: sl@0: **/ sl@0: const TDesC& GetName() const sl@0: { return *iName; } sl@0: /** sl@0: Intended Usage : Get the second TUid of EComEntry sl@0: @return TUid of EComEntry sl@0: @pre Object is fully constructed and initialized sl@0: sl@0: **/ sl@0: const TUid& GetSecondUid() const sl@0: { return iSecondUid; } sl@0: sl@0: /** sl@0: Intended Usage : Get the third TUid of EComEntry sl@0: @return TUid of EComEntry sl@0: @pre Object is fully constructed and initialized sl@0: sl@0: **/ sl@0: const TUid& GetThirdUid() const sl@0: { return iThirdUid; } sl@0: sl@0: //This member function is only required in server side and hence configured out for client side sl@0: #ifndef ECOM_CLIENT sl@0: /** sl@0: Intended Usage : Get the Modified Time of EComEntry sl@0: return TTime& Modified time of EComEntry sl@0: @pre Object is fully constructed and initialized sl@0: sl@0: **/ sl@0: const TTime& GetModified() const sl@0: { return iModified; } sl@0: /** sl@0: Intended Usage : Set the Modified Time of EComEntry sl@0: @param aModified New Modified Time sl@0: @pre Object is fully constructed and initialized sl@0: sl@0: **/ sl@0: void SetModified(const TTime& aModified) sl@0: { iModified = aModified.Int64(); } sl@0: #endif sl@0: sl@0: private: sl@0: sl@0: CEComEntry(const TUid& aSecondUid,const TUid& aThirdUid); sl@0: void ConstructL(const TDesC& aDllName); sl@0: sl@0: private: sl@0: HBufC* iName; sl@0: TUid iSecondUid; sl@0: TUid iThirdUid; sl@0: //This member variable is only required in server side and hence configured out for client side sl@0: #ifndef ECOM_CLIENT sl@0: TTime iModified; sl@0: #endif sl@0: }; sl@0: sl@0: sl@0: #endif sl@0: