examples/ForumNokia/Symbian_OS_Basics_Lab_Exercises_v3_1/Lab_04309.cb2/solution/inc/AOLabBubbleSortDocument.h

00001 // Copyright (c) 2006 Nokia Corporation.
00002 
00003 #ifndef __AOLABBUBBLESORTDOCUMENT_h__
00004 #define __AOLABBUBBLESORTDOCUMENT_h__
00005 
00006 #include <akndoc.h>
00007 
00008 class CAOLabBubbleSortAppUi;
00009 class CEikApplication;
00010 
00011 // CAOLabBubbleSortDocument application class.
00012 // An instance of class CAOLabBubbleSortDocument is the Document part of the
00013 // AVKON application framework for the AOLabBubbleSort example application.
00014 class CAOLabBubbleSortDocument : public CAknDocument
00015     {
00016     public: // Constructors and destructor
00017 
00018         static CAOLabBubbleSortDocument* NewL(CEikApplication& aApp);
00019         static CAOLabBubbleSortDocument* NewLC(CEikApplication& aApp);
00020         virtual ~CAOLabBubbleSortDocument();
00021 
00022     public: // Functions from base classes
00023 
00024         CEikAppUi* CreateAppUiL();
00025 
00026     private: // Constructors
00027 
00028         void ConstructL();
00029         CAOLabBubbleSortDocument( CEikApplication& aApp );
00030     };
00031 
00032 #endif // __AOLABBUBBLESORTDOCUMENT_h__
00033 
00034 // End of File

Generated by  doxygen 1.6.2