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

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. #ifndef __AOLABBUBBLESORTDOCUMENT_h__
  3. #define __AOLABBUBBLESORTDOCUMENT_h__
  4. #include <akndoc.h>
  5. class CAOLabBubbleSortAppUi;
  6. class CEikApplication;
  7. // CAOLabBubbleSortDocument application class.
  8. // An instance of class CAOLabBubbleSortDocument is the Document part of the
  9. // AVKON application framework for the AOLabBubbleSort example application.
  10. class CAOLabBubbleSortDocument : public CAknDocument
  11.     {
  12.     public: // Constructors and destructor
  13.         static CAOLabBubbleSortDocument* NewL(CEikApplication& aApp);
  14.         static CAOLabBubbleSortDocument* NewLC(CEikApplication& aApp);
  15.         virtual ~CAOLabBubbleSortDocument();
  16.     public: // Functions from base classes
  17.         CEikAppUi* CreateAppUiL();
  18.     private: // Constructors
  19.         void ConstructL();
  20.         CAOLabBubbleSortDocument( CEikApplication& aApp );
  21.     };
  22. #endif // __AOLABBUBBLESORTDOCUMENT_h__
  23. // End of File