Greg2Document.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. /*
  2. * ============================================================================
  3. *  Name     : CGreg2Document from Greg2Document.h
  4. *  Part of  : greg2
  5. *  Created  : 12/11/2002 by 
  6. *  Description:
  7. *     Declares document for application.
  8. *  Version  :
  9. *  Copyright: 
  10. * ============================================================================
  11. */
  12. #ifndef GREG2DOCUMENT_H
  13. #define GREG2DOCUMENT_H
  14. // INCLUDES
  15. #include <akndoc.h>
  16.    
  17. // CONSTANTS
  18. // FORWARD DECLARATIONS
  19. class  CEikAppUi;
  20. // CLASS DECLARATION
  21. /**
  22. *  CGreg2Document application class.
  23. */
  24. class CGreg2Document : public CAknDocument
  25.     {
  26.     public: // Constructors and destructor
  27.         /**
  28.         * Two-phased constructor.
  29.         */
  30.         static CGreg2Document* NewL(CEikApplication& aApp);
  31.         /**
  32.         * Destructor.
  33.         */
  34.         virtual ~CGreg2Document();
  35.     public: // New functions
  36.     protected:  // New functions
  37.     protected:  // Functions from base classes
  38.     private:
  39.         /**
  40.         * EPOC default constructor.
  41.         */
  42.         CGreg2Document(CEikApplication& aApp);
  43.         void ConstructL();
  44.     private:
  45.         /**
  46.         * From CEikDocument, create CGreg2AppUi "App UI" object.
  47.         */
  48.         CEikAppUi* CreateAppUiL();
  49.     };
  50. #endif
  51. // End of File