Changeset 645 for cpp/frams/param/param.h
- Timestamp:
- 12/31/16 20:35:12 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/param/param.h
r640 r645 118 118 ExtValue getById(const char* prop); 119 119 120 int setInt(int i, const char* str );120 int setInt(int i, const char* str, bool strict=false); 121 121 int setDouble(int i, const char* str); 122 122 virtual int setInt(int, paInt) = 0; ///< set long value, you can only use this for "d" type prop … … 128 128 int set(int, const ExtValue &);///< most universal set, can be used for every datatype 129 129 130 int set(int, const char* ); ///< oldstyle set, can convert string to long or double130 int set(int, const char*, bool strict=false); ///< oldstyle set, can convert string to long or double 131 131 132 132 int setIntById(const char* prop, paInt);///< set long value, you can only use this for "d" type prop
Note: See TracChangeset
for help on using the changeset viewer.