examples/ForumNokia/ThreadExample/inc/threaddocument.h

00001 /*
00002 * ============================================================================
00003 *  Name     : CThreadDocument from CThreadDocument.h
00004 *  Part of  : Thread
00005 *  Created  : 04.02.2005 by Forum Nokia
00006 *  Description:
00007 *       Declares document for application.
00008 *  Version  : 1.0
00009 *  Copyright: Nokia Corporation
00010 * ============================================================================
00011 */
00012 
00013 #ifndef THREAD_DOCUMENT_H
00014 #define THREAD_DOCUMENT_H
00015 
00016 // INCLUDES
00017 #include <akndoc.h>
00018 
00019 // FORWARD DECLARATIONS
00020 class CThreadAppUi;
00021 class CEikApplication;
00022 
00023 // CLASS DECLARATION
00024 
00029 class CThreadDocument : public CAknDocument
00030     {
00031 public:
00032 
00041     static CThreadDocument* NewL(CEikApplication& aApp);
00042 
00051     static CThreadDocument* NewLC(CEikApplication& aApp);
00052 
00058     ~CThreadDocument();
00059 
00060 public: // from CAknDocument
00067     CEikAppUi* CreateAppUiL();
00068 
00069 private: // Basic two-phase EPOC constructors
00070 
00076     void ConstructL();
00077 
00084     CThreadDocument(CEikApplication& aApp);
00085     };
00086 
00087 #endif // THREAD_DOCUMENT_H

Generated by  doxygen 1.6.2