Changeset 4248 for issm/trunk/src/c/objects/Params/BoolParam.h
- Timestamp:
- 06/26/10 12:30:21 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Params/BoolParam.h
r4244 r4248 35 35 IssmBool value; 36 36 37 /* constructors, destructors: {{{1*/37 /*BoolParam constructors, destructors: {{{1*/ 38 38 BoolParam(); 39 39 BoolParam(int enum_type,IssmBool value); 40 40 ~BoolParam(); 41 41 /*}}}*/ 42 /*Object methods: {{{1*/43 Object* copy();42 /*Object virtual functions definitions:{{{1 */ 43 void Echo(); 44 44 void DeepEcho(); 45 void Demarshall(char** pmarshalled_dataset); 46 void Echo(); 47 int Enum(); 48 int Id(); 45 int Id(); 46 int MyRank(); 49 47 void Marshall(char** pmarshalled_dataset); 50 48 int MarshallSize(); 51 int MyRank(); 49 void Demarshall(char** pmarshalled_dataset); 50 int Enum(); 51 Object* copy(); 52 52 /*}}}*/ 53 /*Param methods: {{{1*/53 /*Param vritual function definitions: {{{1*/ 54 54 int EnumType(){return enum_type;} 55 55 void GetParameterValue(bool* pbool){*pbool=value;}
Note:
See TracChangeset
for help on using the changeset viewer.