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