sdkcreationmw/sdkexamples/cppexamples/S60Ex/ClientServerAsync/client/inc/csasyncapplication.h
changeset 0 b26acd06ea60
child 1 ac50fd48361b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sdkcreationmw/sdkexamples/cppexamples/S60Ex/ClientServerAsync/client/inc/csasyncapplication.h	Mon Mar 08 12:09:11 2010 +0530
@@ -0,0 +1,59 @@
+/*
+* Copyright (c) 2004-2006 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 __CSASYNC_APPLICATION_H__
+#define __CSASYNC_APPLICATION_H__
+
+// INCLUDE FILES
+#include <aknapp.h>
+
+// CONSTANTS
+// Uid for this application, this should match the one in the mmp file
+const TUid KUidCSAsyncApp = { 0xA0000226 };
+
+// CLASS DECLARATION
+/**
+* CCSAsyncApplication
+*  An instance of CCSAsyncApplication is the application part of the AVKON
+*  application framework for the CSAsync example application.
+*/
+class CCSAsyncApplication : public CAknApplication
+    {
+    public: // Functions from base classes
+
+        /**
+        * From CAknApplication, AppDllUid.
+        * Returns the application DLL UID value.
+        * @return the UID of this Application/Dll.
+        */
+        TUid AppDllUid() const;
+
+    protected: // Functions from base classes
+
+        /**
+        * From CAknApplication, CreateDocumentL.
+        * Creates a CApaDocument object and return a pointer to it.
+        * @return A pointer to the created document.
+        */
+        CApaDocument* CreateDocumentL();
+    };
+
+#endif // __CSASYNC_APPLICATION_H__
+
+
+// End of File