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

Symbian

开发平台:

C/C++

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