--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/realtimenetprots/sipfw/ProfileAgent/Profile/Src/extensionboolparam.h Tue Feb 02 01:03:15 2010 +0200
@@ -0,0 +1,100 @@
+/*
+* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+* Name : extensionboolparam.h
+* Part of : SIP Profile
+* Interface : private
+* Version : 1.0
+*
+*/
+
+
+
+
+/**
+ @internalComponent
+*/
+
+#ifndef TEXTENSIONBOOLPARAM_H
+#define TEXTENSIONBOOLPARAM_H
+
+// INCLUDES
+#include <e32base.h>
+#include <s32strm.h>
+
+// FORWARD DECLARATIONS
+
+// CLASS DECLARATION
+/**
+* This class represents an extension parameter whose value is a boolean.
+*/
+NONSHARABLE_CLASS(TExtensionBoolParam)
+ {
+ public: // Constructors
+
+ /**
+ * Default constructor
+ */
+ TExtensionBoolParam();
+
+ /**
+ * Copy constructor
+ */
+ TExtensionBoolParam(const TExtensionBoolParam& aParam);
+
+ /**
+ * Constructor
+ */
+ TExtensionBoolParam(TUint32 aID, TBool aValue);
+
+ public: // New functions
+
+ /**
+ * De-serialize parameter from stream
+ * @param aReadStream stream where data is read from
+ */
+ static TExtensionBoolParam InternalizeL(RReadStream& aReadStream);
+
+ /**
+ * Serialize parameter to stream
+ * @param aWriteStream stream where parameter is to be serialized
+ */
+ void ExternalizeL(RWriteStream& aWriteStream) const;
+
+ TUint ExternalizedSizeL() const;
+
+ /**
+ * Compare two parameters
+ * @param aParameter parameter to compare to
+ * @return ETrue if parameters are equal
+ */
+ TBool operator==(const TExtensionBoolParam& aParam) const;
+
+ TUint32 ID() const;
+
+ TBool Value() const;
+
+ private: // Data
+
+ TUint32 iID;
+ TBool iValue;
+
+ private: // For testing purposes
+
+ #ifdef CPPUNIT_TEST
+ friend class CExtensionBoolParamTest;
+ #endif
+ };
+
+#endif // TEXTENSIONBOOLPARAM_H