Changeset 7746 for issm/trunk/src/c/objects/Options/OptionStruct.h
- Timestamp:
- 04/01/11 08:41:32 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Options/OptionStruct.h
r7739 r7746 33 33 int MarshallSize(){_error_("Not implemented yet");}; 34 34 void Demarshall(char** pmarshalled_dataset){_error_("Not implemented yet");}; 35 int Enum(){ _error_("Not implemented yet");};35 int Enum(){return OptionStructEnum;}; 36 36 Object* copy(){_error_("Not implemented yet");}; 37 37 /*}}}*/ … … 42 42 int NDims(); 43 43 int* Size(); 44 // Object* Get(); 45 // get by single index, multiple index, simple find, recursive find 44 void Get(double* pvalue){_error_("An OptionCell object cannot return a double");}; 45 void Get(bool* pvalue){ _error_("An OptionCell object cannot return a bool");}; 46 void Get(char** pvalue){ _error_("An OptionCell object cannot return a string");}; 46 47 47 48 };
Note:
See TracChangeset
for help on using the changeset viewer.