VideoDocument.h
上传用户:xinrui0099
上传日期:2010-03-05
资源大小:48k
文件大小:1k
- /*
- * ============================================================================
- * Name : VideoDocument.h
- * Part of : Video
- * Created : 10/14/2003 by Forum Nokia
- * Description:
- * Declares document for application.
- * Version :
- * Copyright: Forum Corporation, 2003
- * ============================================================================
- */
- #ifndef VIDEODOCUMENT_H
- #define VIDEODOCUMENT_H
- #include <akndoc.h>
-
- class CEikAppUi;
- /**
- * CVideoDocument application class.
- */
- class CVideoDocument : public CAknDocument
- {
- public: // Constructors and destructor
- /**
- * Two-phased constructor.
- */
- static CVideoDocument* NewL(CEikApplication& aApp);
- /**
- * Destructor.
- */
- virtual ~CVideoDocument();
- private:
- /**
- * EPOC default constructor.
- */
- CVideoDocument(CEikApplication& aApp);
- void ConstructL();
- private:
- /**
- * From CEikDocument, create CVideoAppUi "App UI" object.
- */
- CEikAppUi* CreateAppUiL();
- };
- #endif
- // End of File