S60MMFLabDocument.h
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. #ifndef S60MMFLABDOCUMENT_H
  3. #define S60MMFLABDOCUMENT_H
  4. // INCLUDES
  5. #include <akndoc.h>
  6.    
  7. // CONSTANTS
  8. // FORWARD DECLARATIONS
  9. class  CEikAppUi;
  10. // CLASS DECLARATION
  11. /**
  12. *  CS60MMFLabDocument application class.
  13. */
  14. class CS60MMFLabDocument : public CAknDocument
  15.     {
  16.     public: // Constructors and destructor
  17.         /**
  18.         * Two-phased constructor.
  19.         */
  20.         static CS60MMFLabDocument* NewL(CEikApplication& aApp);
  21.         /**
  22.         * Destructor.
  23.         */
  24.         virtual ~CS60MMFLabDocument();
  25.     public: // New functions
  26.     public: // Functions from base classes
  27.     protected:  // New functions
  28.     protected:  // Functions from base classes
  29.     private:
  30.         /**
  31.         * EPOC default constructor.
  32.         */
  33.         CS60MMFLabDocument(CEikApplication& aApp);
  34.         void ConstructL();
  35.     private:
  36.         /**
  37.         * From CEikDocument, create CS60MMFLabAppUi "App UI" object.
  38.         */
  39.         CEikAppUi* CreateAppUiL();
  40.     };
  41. #endif
  42. // End of File