www.pudn.com > FileList_v1_0.zip > FileListDocument.h
/* * ============================================================================ * Name : CFileListDocument from FileListDocument.h * Part of : FileList * Created : 18.12.2002 by Forum Nokia * Description: * Declares document for application. * Version : 1.0 * Copyright: Nokia Corporation * ============================================================================ */ #ifndef FILELISTDOCUMENT_H #define FILELISTDOCUMENT_H // INCLUDES #include// CONSTANTS // FORWARD DECLARATIONS class CEikAppUi; // CLASS DECLARATION /** * CFileListDocument application class. */ class CFileListDocument : public CAknDocument { public: // Constructors and destructor /** * Two-phased constructor. */ static CFileListDocument* NewL(CEikApplication& aApp); /** * Destructor. */ virtual ~CFileListDocument(); private: /** * Symbian default constructor. */ CFileListDocument(CEikApplication& aApp); void ConstructL(); private: // Data /** * From CEikDocument, create CFileListAppUi "App UI" object. */ CEikAppUi* CreateAppUiL(); }; #endif // End of File