00001 00010 #ifndef __CONNECTIONDIALOG_H__ 00011 #define __CONNECTIONDIALOG_H__ 00012 00013 #include <e32std.h> 00014 #include <eikdialg.h> 00015 00016 00022 class CConnectionDialog : public CEikDialog { 00023 00024 public: 00030 CConnectionDialog(TDes &aHostName); 00031 00032 void PreLayoutDynInitL(); 00033 TBool OkToExitL(TInt aKeycode); 00034 00035 private: 00036 TDes *iHostName; 00037 }; 00038 00039 00040 #endif