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

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. #ifndef __AOLABBUBBLESORTAPPUI_h__
  3. #define __AOLABBUBBLESORTAPPUI_h__
  4. #include <aknappui.h>
  5. class CAOLabBubbleSortContainer;
  6. // Application UI class.
  7. class CAOLabBubbleSortAppUi : public CAknAppUi
  8.     {
  9.     public: // Constructors and destructor
  10.         void ConstructL();
  11.         CAOLabBubbleSortAppUi();
  12.         virtual ~CAOLabBubbleSortAppUi();
  13.     private:  // Functions from base classes
  14.         // From CEikAppUi
  15.         void HandleCommandL( TInt aCommand );
  16.         // From MEikStatusPaneObserver
  17. void HandleStatusPaneSizeChange();
  18. void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
  19.         
  20.     private: // Data
  21.         CAOLabBubbleSortContainer* iAppContainer;    
  22.     };
  23. #endif // __AOLABBUBBLESORTAPPUI_h__
  24. // End of File