]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/xrc/xmlres.h
added missing header needed at least by wxMotif under HP-UX
[wxWidgets.git] / include / wx / xrc / xmlres.h
index 37dc3a18d799eb4ced7c956bb570b5f2b4d1741e..51118d1ea115b6705568b7c2315c714169a9d12c 100644 (file)
@@ -387,8 +387,11 @@ protected:
     // Gets a bool flag (1, t, yes, on, true are true, everything else is false).
     bool GetBool(const wxString& param, bool defaultv = false);
 
-    // Gets the integer value from the parameter.
-    long GetLong( const wxString& param, long defaultv = 0 );
+    // Gets an integer value from the parameter.
+    long GetLong(const wxString& param, long defaultv = 0);
+    
+    // Gets a float value from the parameter.
+    float GetFloat(const wxString& param, float defaultv = 0);
 
     // Gets colour in HTML syntax (#RRGGBB).
     wxColour GetColour(const wxString& param);