Update contrib.
1 // Copyright (c) 2006-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.
16 #if !defined(__CHECKEDUID_H__)
17 #define __CHECKEDUID_H__
19 #include <pcstore/pcstoredef.h>
20 #include <pcstore/uid.h>
29 Encapsulates a set of three unique identifiers (UIDs) which, in combination,
30 identify a system object such as a GUI application or a DLL. The three
31 component UIDs are referred to as UID1, UID2 and UID3.
33 An object of this type is referred to as a compound identifier or a UID type.
40 TUidType(TUid aUid1, TUid aUid2);
41 TUidType(TUid aUid1, TUid aUid2, TUid aUid3);
42 TBool operator !=(const TUidType& aUidType) const;
43 TBool operator ==(const TUidType& aUidType) const ;
44 const TUid& operator[](TInt aIndex) const;
45 TBool IsValid() const ;
48 TUid MostDerived() const;
58 Packages a Uid type together with a checksum.
66 TCheckedUid(const TUidType& aUidType);
67 TCheckedUid(const CDes8& aDes);
69 void Set(const TUidType& aUidType);
70 void Set(const CDes8& aDes);
72 const TUidType& UidType() const;
82 class CStoreWriteStream;
83 CStoreWriteStream& operator<<(CStoreWriteStream& aStream,const TCheckedUid& aUid);
85 class CStoreReadStream;
86 CStoreReadStream& operator>>(CStoreReadStream& aStream, TCheckedUid& aUid);
88 #endif // !defined(__CHECKEDUID_H__)