VideoDocument.h
上传用户:xinrui0099
上传日期:2010-03-05
资源大小:48k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. /*
  2. * ============================================================================
  3. *  Name     : VideoDocument.h
  4. *  Part of  : Video
  5. *  Created  : 10/14/2003 by Forum Nokia
  6. *  Description:
  7. *     Declares document for application.
  8. *  Version  :
  9. *  Copyright: Forum Corporation, 2003
  10. * ============================================================================
  11. */
  12. #ifndef VIDEODOCUMENT_H
  13. #define VIDEODOCUMENT_H
  14. #include <akndoc.h>
  15.    
  16. class  CEikAppUi;
  17. /**
  18.  *  CVideoDocument application class.
  19.  */
  20. class CVideoDocument : public CAknDocument
  21.     {
  22.     public: // Constructors and destructor
  23.         /**
  24.          * Two-phased constructor.
  25.          */
  26.         static CVideoDocument* NewL(CEikApplication& aApp);
  27.         /**
  28.          * Destructor.
  29.          */
  30.         virtual ~CVideoDocument();
  31.     private:
  32.         /**
  33.         * EPOC default constructor.
  34.         */
  35.         CVideoDocument(CEikApplication& aApp);
  36.         void ConstructL();
  37.     private:
  38.         /**
  39.         * From CEikDocument, create CVideoAppUi "App UI" object.
  40.         */
  41.         CEikAppUi* CreateAppUiL();
  42.     };
  43. #endif
  44. // End of File