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

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. #ifndef __S60MMFLABAPPLICATION_H__
  3. #define __S60MMFLABAPPLICATION_H__
  4. // INCLUDES
  5. #include <aknapp.h>
  6. // CLASS DECLARATION
  7. /**
  8. * CS60MMFLabApplication application class.
  9. * Provides factory to create concrete document object.
  10. * An instance of CS60MMFLabApplication is the application part of the
  11. * AVKON application framework for the S60MMFLab example application.
  12. */
  13. class CS60MMFLabApplication : public CAknApplication
  14.     {
  15.     public: // Functions from base classes
  16.         /**
  17.         * From CApaApplication, AppDllUid.
  18.         * @return Application's UID (KUidS60MMFLabApp).
  19.         */
  20.         TUid AppDllUid() const;
  21.     protected: // Functions from base classes
  22.         /**
  23.         * From CApaApplication, CreateDocumentL.
  24.         * Creates CS60MMFLabDocument document object. The returned
  25.         * pointer in not owned by the CS60MMFLabApplication object.
  26.         * @return A pointer to the created document object.
  27.         */
  28.         CApaDocument* CreateDocumentL();
  29.     };
  30. #endif // __S60MMFLABAPPLICATION_H__
  31. // End of File