X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/be03c0ec26612a7ab8a9000f455a015c02e05218..5b222f1c9e0acb63c781675555c76f6129316eb1:/include/wx/cmdline.h diff --git a/include/wx/cmdline.h b/include/wx/cmdline.h index 498752cb47..01e4ffc269 100644 --- a/include/wx/cmdline.h +++ b/include/wx/cmdline.h @@ -18,11 +18,10 @@ #endif #include "wx/defs.h" +#include "wx/string.h" #if wxUSE_CMDLINE_PARSER -#include "wx/string.h" - class WXDLLEXPORT wxDateTime; // ---------------------------------------------------------------------------- @@ -131,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); @@ -201,6 +202,9 @@ public: static wxArrayString ConvertStringToArgs(const wxChar *cmdline); private: + // get usage string + wxString GetUsageString(); + // common part of all ctors void Init();