S60UIExampleApplication.h
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:1k
- // Copyright (c) 2006 Nokia Corporation.
- #ifndef __S60UIEXAMPLEAPPLICATION_H__
- #define __S60UIEXAMPLEAPPLICATION_H__
- #include <aknapp.h>
- /**
- * CS60UIExampleApplication application class.
- * Provides factory to create concrete document object.
- * An instance of CS60UIExampleApplication is the application part of the
- * AVKON application framework for the S60UIExample example application.
- */
- class CS60UIExampleApplication : public CAknApplication
- {
- public: // Functions from base classes
- /**
- * From CApaApplication, AppDllUid.
- * @return Application's UID (KUidS60UIExampleApp).
- */
- TUid AppDllUid() const;
- protected: // Functions from base classes
- /**
- * From CApaApplication, CreateDocumentL.
- * Creates CS60UIExampleDocument document object. The returned
- * pointer in not owned by the CS60UIExampleApplication object.
- * @return A pointer to the created document object.
- */
- CApaDocument* CreateDocumentL();
- };
- #endif // __S60UIEXAMPLEAPPLICATION_H__
- // End of File