diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/threaddocument_8h_source.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/threaddocument_8h_source.html Tue Mar 30 16:16:55 2010 +0100 @@ -0,0 +1,61 @@ + + +
+ +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 +