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

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. #include "AOLabBubbleSortAppUi.h"
  3. #include "AOLabBubbleSortDocument.h"
  4. // Constructs a document object for this application
  5. CAOLabBubbleSortDocument* CAOLabBubbleSortDocument::NewL(CEikApplication& aApp)
  6.     {
  7.     CAOLabBubbleSortDocument* self = NewLC(aApp);
  8.     CleanupStack::Pop( self );
  9.     return self;
  10.     }
  11. // Constructs a document object for this application and places it on the cleanupstack.
  12. CAOLabBubbleSortDocument* CAOLabBubbleSortDocument::NewLC(CEikApplication& aApp)
  13.     {
  14.     CAOLabBubbleSortDocument* self = new (ELeave) CAOLabBubbleSortDocument(aApp);
  15.     CleanupStack::PushL( self );
  16.     self->ConstructL();
  17.     return self;
  18.     }
  19. // Symbian 2nd phase constructor
  20. void CAOLabBubbleSortDocument::ConstructL()
  21.     {
  22.     // No implementation required
  23.     }
  24. // C++  constructor
  25. CAOLabBubbleSortDocument::CAOLabBubbleSortDocument( CEikApplication& aApp )
  26.     : CAknDocument( aApp )
  27.     {
  28.     // No implementation required
  29.     }
  30. // Destructor
  31. CAOLabBubbleSortDocument::~CAOLabBubbleSortDocument()
  32.     {
  33.     // No implementation required
  34.     }
  35. // Called by the application framework to create the application UI object
  36. CEikAppUi* CAOLabBubbleSortDocument::CreateAppUiL()
  37.     {
  38.     return (new (ELeave) CAOLabBubbleSortAppUi);
  39.     }
  40. // End of File