diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/helloworldbasicquerydialog_8h_source.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/helloworldbasicquerydialog_8h_source.html Tue Mar 30 16:16:55 2010 +0100 @@ -0,0 +1,61 @@ + + +
+ +00001 /* +00002 * ============================================================================== +00003 * Name : helloworldbasicquerydialog.h +00004 * Part of : helloworldbasic +00005 * Interface : +00006 * Description : +00007 * Version : +00008 * +00009 * Copyright (c) 2006 Nokia Corporation. +00010 * This material, including documentation and any related +00011 * computer programs, is protected by copyright controlled by +00012 * Nokia Corporation. +00013 * ============================================================================== +00014 */ +00015 +00016 #ifndef HELLOWORLDQUERYDIALOG_H +00017 #define HELLOWORLDQUERYDIALOG_H +00018 +00019 +00020 // INCLUDES +00021 #include <aknquerydialog.h> +00022 +00023 // CLASS DECLARATION +00024 +00029 class CHelloWorldQueryDialog : public CAknTextQueryDialog +00030 { +00031 public: // Constructors and destructor +00032 +00038 CHelloWorldQueryDialog( TDes& aBuf, HBufC *aDefInput ); +00039 +00043 virtual ~CHelloWorldQueryDialog() {}; +00044 +00045 private: // from CEikDialog +00046 +00050 void PreLayoutDynInitL(); +00051 +00052 private: // Data +00053 +00057 HBufC& iDefInput; +00058 }; +00059 +00060 #endif // HELLOWORLDQUERYDIALOG_H +00061 +00062 // End of File +00063 +