epoc32/include/mw/aiwvarianttype.hrh
branchSymbian2
changeset 2 2fe1408b6811
parent 1 666f914201fb
child 4 837f303aceeb
--- a/epoc32/include/mw/aiwvarianttype.hrh	Tue Nov 24 13:55:44 2009 +0000
+++ b/epoc32/include/mw/aiwvarianttype.hrh	Tue Mar 16 16:12:26 2010 +0000
@@ -1,1 +1,44 @@
-aiwvarianttype.hrh
+/*
+* Copyright (c) 2003-2005 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
+* which accompanies this distribution, and is available
+* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:     Variant data type for Generic Parameters library.
+*
+*/
+
+
+
+
+
+#ifndef AIW_VARIANT_TYPE_HRH
+#define AIW_VARIANT_TYPE_HRH
+
+/**
+* Data formats supported by TAiwVariant class.
+*/
+enum TVariantTypeId
+    {
+    EVariantTypeAny        = -1,  ///< Used only in searching
+    EVariantTypeNull       = 0,   ///< Null (empty) type
+
+    EVariantTypeTInt32     = 1,   ///< 32 bit Integer
+    EVariantTypeTUid       = 2,   ///< Globally unique UID
+    EVariantTypeDesC       = 3,   ///< Constant text literal
+    EVariantTypeTTime      = 4,   ///< Date and time
+    EVariantTypeDesC8      = 5,   ///< 8-bit data buffer
+    EVariantTypeFileHandle = 6    ///< File handle
+    };
+
+#endif // AIW_VARIANT_TYPE_HRH
+
+// End of file
+