X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/434c9eb58a50ea181ef87c94be81c0b405c3c514..c781807d89448537ba1d6d8627ff153f3ecc581a:/include/wx/cmdline.h diff --git a/include/wx/cmdline.h b/include/wx/cmdline.h index b34d114225..a6808091ea 100644 --- a/include/wx/cmdline.h +++ b/include/wx/cmdline.h @@ -13,7 +13,7 @@ #ifndef _WX_CMDLINE_H_ #define _WX_CMDLINE_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "cmdline.h" #endif @@ -130,6 +130,8 @@ public: void EnableLongOptions(bool enable = TRUE); void DisableLongOptions() { EnableLongOptions(FALSE); } + bool AreLongOptionsEnabled(); + // extra text may be shown by Usage() method if set by this function void SetLogo(const wxString& logo); @@ -200,10 +202,15 @@ public: static wxArrayString ConvertStringToArgs(const wxChar *cmdline); private: + // get usage string + wxString GetUsageString(); + // common part of all ctors void Init(); struct wxCmdLineParserData *m_data; + + DECLARE_NO_COPY_CLASS(wxCmdLineParser) }; #else // !wxUSE_CMDLINE_PARSER