From: Vadim Zeitlin Date: Tue, 10 Jul 2001 16:44:15 +0000 (+0000) Subject: added #if wxUSE_CMDLINE_PARSER around the header X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2407b388de44a6575d6a6291f4affa8614fe5d2f added #if wxUSE_CMDLINE_PARSER around the header git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10950 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/cmdline.h b/include/wx/cmdline.h index 6ac61e9361..ca9dbc04ea 100644 --- a/include/wx/cmdline.h +++ b/include/wx/cmdline.h @@ -17,6 +17,10 @@ #pragma interface "cmdline.h" #endif +#include "wx/defs.h" + +#if wxUSE_CMDLINE_PARSER + #include "wx/string.h" class WXDLLEXPORT wxDateTime; @@ -197,4 +201,6 @@ private: struct wxCmdLineParserData *m_data; }; +#endif // wxUSE_CMDLINE_PARSER + #endif // _WX_CMDLINE_H_