X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/434c9eb58a50ea181ef87c94be81c0b405c3c514..390015c0ee28d25b0b7e23c42a52733adcac334f:/include/wx/cmdline.h?ds=inline diff --git a/include/wx/cmdline.h b/include/wx/cmdline.h index b34d114225..bc8c893654 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,6 +202,9 @@ public: static wxArrayString ConvertStringToArgs(const wxChar *cmdline); private: + // get usage string + wxString GetUsageString(); + // common part of all ctors void Init();