VideoApp.h
上传用户:xinrui0099
上传日期:2010-03-05
资源大小:48k
文件大小:1k
- /*
- * ============================================================================
- * Name : VideoApp.h
- * Part of : Video
- * Created : 10/14/2003 by Forum Nokia
- * Description:
- * Declares main application class.
- * Version :
- * Copyright: Forum Corporation, 2003
- * ============================================================================
- */
- #ifndef VIDEOAPP_H
- #define VIDEOAPP_H
- #include <aknapp.h>
- const TUid KUidVideo = { 0x01EF0032 };
- /**
- * CVideoApp application class
- */
- class CVideoApp : public CAknApplication
- {
-
- public: // Functions from base classes
- private:
- /**
- * From CApaApplication, creates CVideoDocument document object.
- * @return A pointer to the created document object.
- */
- CApaDocument* CreateDocumentL();
-
- /**
- * From CApaApplication, returns application's UID (KUidVideo).
- * @return The value of KUidVideo.
- */
- TUid AppDllUid() const;
- };
- #endif