added support for double arguments to wxCmdLineParser (patch 1907289)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52530 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-03-15 02:33:25 +00:00
parent 7999b83011
commit b1859b1a1b
5 changed files with 61 additions and 3 deletions

View File

@@ -185,9 +185,10 @@ public:
value in the provided pointer (which should not be @NULL).
*/
bool Found(const wxString& name) const;
const bool Found(const wxString& name, wxString* value) const;
const bool Found(const wxString& name, long* value) const;
const bool Found(const wxString& name, wxDateTime* value) const;
bool Found(const wxString& name, wxString* value) const;
bool Found(const wxString& name, long* value) const;
bool Found(const wxString& name, double* value) const;
bool Found(const wxString& name, wxDateTime* value) const;
//@}
/**