sl@0
|
1 |
// Copyright (c) 2006-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 |
#if !defined(__CHECKEDUID_H__)
|
sl@0
|
17 |
#define __CHECKEDUID_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <pcstore/pcstoredef.h>
|
sl@0
|
20 |
#include <pcstore/uid.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
namespace PCStore
|
sl@0
|
23 |
{
|
sl@0
|
24 |
class CDes8;
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
@internalComponent
|
sl@0
|
28 |
|
sl@0
|
29 |
Encapsulates a set of three unique identifiers (UIDs) which, in combination,
|
sl@0
|
30 |
identify a system object such as a GUI application or a DLL. The three
|
sl@0
|
31 |
component UIDs are referred to as UID1, UID2 and UID3.
|
sl@0
|
32 |
|
sl@0
|
33 |
An object of this type is referred to as a compound identifier or a UID type.
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
class TUidType
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
TUidType();
|
sl@0
|
39 |
TUidType(TUid aUid1);
|
sl@0
|
40 |
TUidType(TUid aUid1, TUid aUid2);
|
sl@0
|
41 |
TUidType(TUid aUid1, TUid aUid2, TUid aUid3);
|
sl@0
|
42 |
TBool operator !=(const TUidType& aUidType) const;
|
sl@0
|
43 |
TBool operator ==(const TUidType& aUidType) const ;
|
sl@0
|
44 |
const TUid& operator[](TInt aIndex) const;
|
sl@0
|
45 |
TBool IsValid() const ;
|
sl@0
|
46 |
|
sl@0
|
47 |
private:
|
sl@0
|
48 |
TUid MostDerived() const;
|
sl@0
|
49 |
|
sl@0
|
50 |
private:
|
sl@0
|
51 |
TUid iUid[3];
|
sl@0
|
52 |
};
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
@internalComponent
|
sl@0
|
57 |
|
sl@0
|
58 |
Packages a Uid type together with a checksum.
|
sl@0
|
59 |
|
sl@0
|
60 |
@see TUidType
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
class TCheckedUid
|
sl@0
|
63 |
{
|
sl@0
|
64 |
public:
|
sl@0
|
65 |
TCheckedUid();
|
sl@0
|
66 |
TCheckedUid(const TUidType& aUidType);
|
sl@0
|
67 |
TCheckedUid(const CDes8& aDes);
|
sl@0
|
68 |
|
sl@0
|
69 |
void Set(const TUidType& aUidType);
|
sl@0
|
70 |
void Set(const CDes8& aDes);
|
sl@0
|
71 |
CDes8 Des() const;
|
sl@0
|
72 |
const TUidType& UidType() const;
|
sl@0
|
73 |
|
sl@0
|
74 |
private:
|
sl@0
|
75 |
TUint Check() const;
|
sl@0
|
76 |
|
sl@0
|
77 |
private:
|
sl@0
|
78 |
TUidType iType;
|
sl@0
|
79 |
TUint32 iCheck;
|
sl@0
|
80 |
};
|
sl@0
|
81 |
|
sl@0
|
82 |
class CStoreWriteStream;
|
sl@0
|
83 |
CStoreWriteStream& operator<<(CStoreWriteStream& aStream,const TCheckedUid& aUid);
|
sl@0
|
84 |
|
sl@0
|
85 |
class CStoreReadStream;
|
sl@0
|
86 |
CStoreReadStream& operator>>(CStoreReadStream& aStream, TCheckedUid& aUid);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
#endif // !defined(__CHECKEDUID_H__)
|