git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53566
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// give the usage message describing all program options
void Usage() const;
+ // return the usage string, call Usage() to directly show it to the user
+ wxString GetUsageString() const;
+
// get the command line arguments
// ------------------------------
static wxArrayString ConvertStringToArgs(const wxString& cmdline);
private:
- // get usage string
- wxString GetUsageString() const;
-
// common part of all ctors
void Init();
@see SetLogo()
*/
void Usage() const;
+
+ /**
+ Return the string containing the program usage description.
+
+ Call Usage() to directly show this string to the user.
+ */
+ wxString GetUsageString() const;
};