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(__DESHEADER_H__)
17 #define __DESHEADER_H__
19 #include <pcstore/pcstoredef.h>
23 class CStoreWriteStream;
24 class CStoreReadStream;
31 Compact stream format for positive integer values in the range 0 to 536,870,911 ((2^29)-1). Values
32 in the range 0-127 are stored in a single byte, 128-16383 in two bytes and other values in 4 bytes.
34 The class provides conversion to and from TInt, and both externalization and internalization functions.
39 TCardinality(): iCount(0) {};
40 TCardinality(TInt aCount);
42 void Externalize(CStoreWriteStream& aStream) const;
43 void Internalize(CStoreReadStream& aStream);
44 operator TInt() const;
53 Class for the header information of CDes8 and CDes16.
55 The header information of CDes8 and CDes16 includes the data width (8 or 16 bits) and length.
56 This class forms the header information from the given CDes8 or CDes16 data and stores it into
57 a TCardinality object. It also provides the member functions to externalize / internalize
58 itself to / from a stream.
64 CDesHeader(const CDes8& aDes8);
65 CDesHeader(const CDes16& aDes16);
67 void Externalize(CStoreWriteStream& aStream) const;
68 void Internalize(CStoreReadStream& aStream);
75 #endif // !defined(__DESHEADER_H__)