<<[H]TDLGClient [[TDialog]] ##{hheader.snp} #include #pragma hdrstop ##<>[H]TDLGClient [[TDialog]] <<[CPP]TDLGClient [[TDialog]] ##{cheader.snp} #include #pragma hdrstop ##<> Your constructor code here. } [[TDialog]]::~[[TDialog]] () { Destroy(); // INSERT>> Your destructor code here. } ##--END-- !@OPT_APPL_DOCVIEW ##--BEGIN-- @OPT_APPL_DOCVIEW // // Build a response table for all messages/commands handled // by the application. // DEFINE_RESPONSE_TABLE1([[TDialog]], TDialog) //{{[[TDialog]]RSP_TBL_BEGIN}} //{{[[TDialog]]RSP_TBL_END}} END_RESPONSE_TABLE; ## --BEGIN-- @QUERY_APPL_COMMENT == VALUE_VERBOSE ////////////////////////////////////////////////////////// // [[TDialog]] // ========== // Construction/Destruction handling. ## --END-- @QUERY_APPL_COMMENT == VALUE_VERBOSE [[TDialog]]::[[TDialog]] (TDocument& doc, TWindow* parent) ##: @QUERY_APPL_DLGCLIENT [[ClientClass]] ##: <<*ClientClass QUERY_DLOG [[DLogRsrc]] : TView(doc), TDialog(parent, [[DLogRsrc]]) { // INSERT>> Your constructor code here. } [[TDialog]]::~[[TDialog]] () { // INSERT>> Your destructor code here. } bool [[TDialog]]::CanClose () { return TWindow::CanClose() && Doc->CanClose(); } ##--END-- @OPT_APPL_DOCVIEW >>[CPP]TDLGClient [[TDialog]]