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

Symbian

开发平台:

C/C++

  1. /*
  2. * ============================================================================
  3. *  Name     : CGreg2App from Greg2App.h
  4. *  Part of  : greg2
  5. *  Created  : 12/11/2002 by 
  6. *  Description:
  7. *     Declares main application class.
  8. *  Version  :
  9. *  Copyright: 
  10. * ============================================================================
  11. */
  12. #ifndef GREG2APP_H
  13. #define GREG2APP_H
  14. // INCLUDES
  15. #include <aknapp.h>
  16. // CONSTANTS
  17. // UID of the application
  18. const TUid KUidgreg2 = { 0x0D0CC432 };
  19. // CLASS DECLARATION
  20. /**
  21. * CGreg2App application class.
  22. * Provides factory to create concrete document object.
  23. */
  24. class CGreg2App : public CAknApplication
  25.     {
  26.     
  27.     public: // Functions from base classes
  28.     private:
  29.         /**
  30.         * From CApaApplication, creates CGreg2Document document object.
  31.         * @return A pointer to the created document object.
  32.         */
  33.         CApaDocument* CreateDocumentL();
  34.         
  35.         /**
  36.         * From CApaApplication, returns application's UID (KUidgreg2).
  37.         * @return The value of KUidgreg2.
  38.         */
  39.         TUid AppDllUid() const;
  40.     };
  41. #endif
  42. // End of File