natfw/natfwunsaf_protocols/unsaf_codec/inc/natfwunsafdataindication.h
changeset 0 1bce908db942
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/natfw/natfwunsaf_protocols/unsaf_codec/inc/natfwunsafdataindication.h	Tue Feb 02 01:04:58 2010 +0200
@@ -0,0 +1,85 @@
+/*
+* Copyright (c) 2006-2007 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:   
+*
+*/
+
+
+
+
+#ifndef CNATFWUNSAFDATAINDICATION_H
+#define CNATFWUNSAFDATAINDICATION_H
+
+#include <e32base.h>
+#include "natfwunsafmessage.h"
+
+/**
+* NATFWUNSAF Data indication message
+*
+*  @lib natfwunsafprotocols.lib
+*  @since S60 3.2
+*/
+class CNATFWUNSAFDataIndication : public CNATFWUNSAFMessage
+    {
+public: // Constructors and destructor
+
+    /**
+    * Creates a CNATFWUNSAFDataIndication instance
+    * @param aTransactionID NATFWUNSAF transaction ID
+    * @return A new instance of CNATFWUNSAFDataIndication
+    */
+    IMPORT_C static CNATFWUNSAFDataIndication*
+        NewL(const TNATFWUNSAFTransactionID& aTransactionID);
+
+    /**
+    * Creates a CNATFWUNSAFDataIndication instance and pushes it to
+    * CleanupStack
+    * @param aTransactionID NATFWUNSAF transaction ID
+    * @return A new instance of CNATFWUNSAFDataIndication
+    */
+    IMPORT_C static CNATFWUNSAFDataIndication*
+        NewLC(const TNATFWUNSAFTransactionID& aTransactionID);
+
+    /**
+    * Creates a CNATFWUNSAFDataIndication instance. Used from lookup
+    * table.
+    * @param aTransactionID NATFWUNSAF transaction ID
+    * @return A new instance of CNATFWUNSAFMessage,
+    *         ownership is transferred.
+    */
+    static CNATFWUNSAFMessage*
+        CreateL(const TNATFWUNSAFTransactionID& aTransactionID);
+
+    /**
+    * Destructor, deletes the resources of CNATFWUNSAFDataIndication.
+    */
+    ~CNATFWUNSAFDataIndication();
+
+public: // From CNATFWUNSAFMessage
+
+    TType Type() const;
+
+    TBool Validate() const;
+
+    TBool IsAllowed(TUint16 aAttributeType) const;
+
+private: // Constructors
+
+    CNATFWUNSAFDataIndication(
+        const TNATFWUNSAFTransactionID& aTransactionID);
+    };
+
+#endif // CNATFWUNSAFDATAINDICATION_H
+
+