AOLabBubbleSortDocument.cpp
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:1k
源码类别:
Symbian
开发平台:
C/C++
- // Copyright (c) 2006 Nokia Corporation.
- #include "AOLabBubbleSortAppUi.h"
- #include "AOLabBubbleSortDocument.h"
- // Constructs a document object for this application
- CAOLabBubbleSortDocument* CAOLabBubbleSortDocument::NewL(CEikApplication& aApp)
- {
- CAOLabBubbleSortDocument* self = NewLC(aApp);
- CleanupStack::Pop( self );
- return self;
- }
- // Constructs a document object for this application and places it on the cleanupstack.
- CAOLabBubbleSortDocument* CAOLabBubbleSortDocument::NewLC(CEikApplication& aApp)
- {
- CAOLabBubbleSortDocument* self = new (ELeave) CAOLabBubbleSortDocument(aApp);
- CleanupStack::PushL( self );
- self->ConstructL();
- return self;
- }
- // Symbian 2nd phase constructor
- void CAOLabBubbleSortDocument::ConstructL()
- {
- // No implementation required
- }
- // C++ constructor
- CAOLabBubbleSortDocument::CAOLabBubbleSortDocument( CEikApplication& aApp )
- : CAknDocument( aApp )
- {
- // No implementation required
- }
- // Destructor
- CAOLabBubbleSortDocument::~CAOLabBubbleSortDocument()
- {
- // No implementation required
- }
- // Called by the application framework to create the application UI object
- CEikAppUi* CAOLabBubbleSortDocument::CreateAppUiL()
- {
- return (new (ELeave) CAOLabBubbleSortAppUi);
- }
- // End of File