]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cmdline.h
fixed wxALL_FILES definition in Unicode build
[wxWidgets.git] / include / wx / cmdline.h
index 498752cb476f781825aaa1d9d55c28ac540c38fd..bc8c8936549f483dfcd315597f275377275f7992 100644 (file)
 #ifndef _WX_CMDLINE_H_
 #define _WX_CMDLINE_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
     #pragma interface "cmdline.h"
 #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();