X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/779288b48649bdc2afbea19ec886347187d6cee6..8907a7e2c0fb61ecca0b6434dd69ee42b7ee1db6:/include/wx/cmdline.h diff --git a/include/wx/cmdline.h b/include/wx/cmdline.h index 44d4b1744c..8df967be96 100644 --- a/include/wx/cmdline.h +++ b/include/wx/cmdline.h @@ -45,6 +45,7 @@ enum wxCmdLineParamType wxCMD_LINE_VAL_STRING, // should be 0 (default) wxCMD_LINE_VAL_NUMBER, wxCMD_LINE_VAL_DATE, + wxCMD_LINE_VAL_DOUBLE, wxCMD_LINE_VAL_NONE }; @@ -205,6 +206,10 @@ public: // the value in the provided pointer bool Found(const wxString& name, long *value) const; + // returns true if an option taking a double value was found and stores + // the value in the provided pointer + bool Found(const wxString& name, double *value) const; + #if wxUSE_DATETIME // returns true if an option taking a date value was found and stores the // value in the provided pointer