Changeset 7737 for issm/trunk/src/c/objects/Options/OptionsCell.h
- Timestamp:
- 03/31/11 16:12:40 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Options/OptionsCell.h
r7731 r7737 11 11 #include "../../EnumDefinitions/EnumDefinitions.h" 12 12 13 #include "./Option sObject.h"13 #include "./Option.h" 14 14 /*}}}*/ 15 15 16 class OptionsCell: public Option sObject{16 class OptionsCell: public Option { 17 17 18 18 public: 19 19 20 DataSet* values;20 Options* values; 21 21 22 22 /*OptionsCell constructors, destructors {{{1*/ … … 28 28 void DeepEcho(); 29 29 void DeepEcho(char* indent); 30 int Id() ;31 int MyRank() ;32 void Marshall(char** pmarshalled_dataset) ;33 int MarshallSize() ;34 void Demarshall(char** pmarshalled_dataset) ;35 int Enum() ;36 Object* copy() ;30 int Id(){_error_("Not implemented yet");}; 31 int MyRank(){_error_("Not implemented yet");}; 32 void Marshall(char** pmarshalled_dataset){_error_("Not implemented yet");}; 33 int MarshallSize(){_error_("Not implemented yet");}; 34 void Demarshall(char** pmarshalled_dataset){_error_("Not implemented yet");}; 35 int Enum(){_error_("Not implemented yet");}; 36 Object* copy(){_error_("Not implemented yet");}; 37 37 /*}}}*/ 38 38
Note:
See TracChangeset
for help on using the changeset viewer.