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

Symbian

开发平台:

C/C++

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