From: Dennis Syrovatsky Date: Wed, 14 Dec 2005 11:56:25 +0000 (+0000) Subject: Added CreateFolderDlg class : public rfb_win32::Dialog. X-Git-Tag: v0.0.90~384^2~388 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=555884dfac31f0291542e5b54feae7a24be0805c;p=tigervnc.git Added CreateFolderDlg class : public rfb_win32::Dialog. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@447 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/vncviewer/FTDialog.h b/vncviewer/FTDialog.h index e3d1d376..ed3afa97 100644 --- a/vncviewer/FTDialog.h +++ b/vncviewer/FTDialog.h @@ -28,6 +28,7 @@ #include #include +#include #include #include #include @@ -181,8 +182,20 @@ namespace rfb { bool close(bool bResult); }; - private: + private: CancelingDlg *m_pCancelingDlg; + + public: + class CreateFolderDlg : public Dialog + { + public: + CreateFolderDlg(FTDialog *pFTDlg); + ~CreateFolderDlg(); + + }; + + private: + CreateFolderDlg *m_pCreateFolderDlg; }; } }