SettingsDialog.h
上传用户:sempras
上传日期:2007-03-04
资源大小:821k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. #ifndef __SETTINGSDIALOG_H
  2. #define __SETTINGSDIALOG_H
  3. #include "eikdialg.h"
  4. #include "EmailExampleEngine.h"
  5. class CEmailExampleEngine;
  6. /*
  7. * ============================================================================
  8. *  Name     : CSettingsDialog from SettingsDialog.h
  9. *  Part of  : EmailExample
  10. *  Created  : 09/11/2003 by Forum Nokia
  11. *  Implementation notes:
  12. * Dialog which implements custom choicelist
  13. *
  14. *  Version  : 1.0
  15. *  Copyright: Nokia Corporation
  16. * ============================================================================
  17. */
  18. class CSettingsDialog : public CEikDialog
  19. {
  20. public:
  21. CSettingsDialog();
  22. private:
  23. void PreLayoutDynInitL();
  24. TBool OkToExitL(TInt aKeycode);
  25. public:
  26. CEmailExampleEngine* iEngine;
  27. };
  28. #endif