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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 NONSHARABLE_CLASS(CEComEntry) :public CBase
25 Created to avoid passing larger TEntry objects to functions.
29 friend class CEComEntryTest;
32 static CEComEntry* NewL(const TDesC& aDllName,const TUid& aSecondUid, const TUid& aThirdUid);
34 virtual ~CEComEntry();
39 Intended Usage : Get the Name of EComEntry
40 @return TDesC& Name of EComEntry
41 @pre Object is fully constructed and initialized
44 const TDesC& GetName() const
47 Intended Usage : Get the second TUid of EComEntry
48 @return TUid of EComEntry
49 @pre Object is fully constructed and initialized
52 const TUid& GetSecondUid() const
53 { return iSecondUid; }
56 Intended Usage : Get the third TUid of EComEntry
57 @return TUid of EComEntry
58 @pre Object is fully constructed and initialized
61 const TUid& GetThirdUid() const
64 //This member function is only required in server side and hence configured out for client side
67 Intended Usage : Get the Modified Time of EComEntry
68 return TTime& Modified time of EComEntry
69 @pre Object is fully constructed and initialized
72 const TTime& GetModified() const
75 Intended Usage : Set the Modified Time of EComEntry
76 @param aModified New Modified Time
77 @pre Object is fully constructed and initialized
80 void SetModified(const TTime& aModified)
81 { iModified = aModified.Int64(); }
86 CEComEntry(const TUid& aSecondUid,const TUid& aThirdUid);
87 void ConstructL(const TDesC& aDllName);
93 //This member variable is only required in server side and hence configured out for client side