examples/ForumNokia/Symbian_OS_Basics_Lab_Exercises_v3_1/Lab_04309.cb2/solution/src/AOLabBubbleSortDocument.cpp

00001 // Copyright (c) 2006 Nokia Corporation.
00002 
00003 #include "AOLabBubbleSortAppUi.h"
00004 #include "AOLabBubbleSortDocument.h"
00005 
00006 // Constructs a document object for this application
00007 CAOLabBubbleSortDocument* CAOLabBubbleSortDocument::NewL(CEikApplication& aApp)
00008     {
00009     CAOLabBubbleSortDocument* self = NewLC(aApp);
00010     CleanupStack::Pop( self );
00011     return self;
00012     }
00013 
00014 // Constructs a document object for this application and places it on the cleanupstack.
00015 CAOLabBubbleSortDocument* CAOLabBubbleSortDocument::NewLC(CEikApplication& aApp)
00016     {
00017     CAOLabBubbleSortDocument* self = new (ELeave) CAOLabBubbleSortDocument(aApp);
00018     CleanupStack::PushL( self );
00019     self->ConstructL();
00020     return self;
00021     }
00022 
00023 
00024 // Symbian 2nd phase constructor
00025 void CAOLabBubbleSortDocument::ConstructL()
00026     {
00027     // No implementation required
00028     }
00029 
00030 
00031 // C++  constructor
00032 CAOLabBubbleSortDocument::CAOLabBubbleSortDocument( CEikApplication& aApp )
00033     : CAknDocument( aApp )
00034     {
00035     // No implementation required
00036     }
00037 
00038 
00039 // Destructor
00040 CAOLabBubbleSortDocument::~CAOLabBubbleSortDocument()
00041     {
00042     // No implementation required
00043     }
00044 
00045 
00046 // Called by the application framework to create the application UI object
00047 CEikAppUi* CAOLabBubbleSortDocument::CreateAppUiL()
00048     {
00049     return (new (ELeave) CAOLabBubbleSortAppUi);
00050     }
00051 
00052 // End of File

Generated by  doxygen 1.6.2