cbsatplugin/atmisccmdplugin/inc/ussdsendmessageimpl.h
changeset 32 19bd632b5100
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cbsatplugin/atmisccmdplugin/inc/ussdsendmessageimpl.h	Fri May 28 17:03:06 2010 +0300
@@ -0,0 +1,48 @@
+/* Copyright (c) 2010 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 USSDSENDMESSAGEIMPL_H
+#define USSDSENDMESSAGEIMPL_H
+
+#include <etelmm.h>
+
+class MUSSDCallback;
+
+/**
+ *  Class for sending USSD data
+ */
+NONSHARABLE_CLASS( CUSSDSendMessageImpl ) : public CActive
+{
+public:
+     static CUSSDSendMessageImpl* NewL(MUSSDCallback* aCallback, RMobileUssdMessaging& aUssdSession);
+     ~CUSSDSendMessageImpl();
+
+    TInt SendUSSDCmd(const TDesC8& aCmd, 
+                     RMobileUssdMessaging::TMobileUssdAttributesV1& aUSDAttribute);
+
+private: // methods from CActive
+    virtual void RunL();
+    virtual void DoCancel();
+    // RunError not needed as RunL does not leave
+    
+private:
+    CUSSDSendMessageImpl(MUSSDCallback* aCallback, 
+                          RMobileUssdMessaging& aUSSDMessagingSession);
+
+private:
+    MUSSDCallback* iCallback;        
+    RMobileUssdMessaging& iUssdSession;
+    };
+
+#endif /* USSDSENDMESSAGEIMPL_H */