Changeset 253 for cpp/frams/param/param.h
- Timestamp:
- 11/18/14 17:01:07 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/param/param.h
r247 r253 136 136 @return 0 if min/max/def information is not available */ 137 137 int getMinMax(int prop, double& minumum, double& maximum, double& def); 138 int getMinMax(int prop, int& minumum, int& maximum, SString& def); 138 139 139 140 virtual void setDefault(bool numericonly = false); … … 228 229 protected: 229 230 virtual void *getTarget(int i); 230 virtual ParamEntry *entry(int i) = 0;231 231 const char* myname; 232 232 bool dontcheckchanges; … … 249 249 void* getSelected() { return object; } 250 250 251 virtual ParamEntry *entry(int i) = 0; 251 252 const char *id(int i) { return (i >= getPropCount()) ? 0 : entry(i)->id; } 252 253 const char *name(int i) { return entry(i)->name; }
Note: See TracChangeset
for help on using the changeset viewer.