Changeset 3469
- Timestamp:
- 04/08/10 11:31:12 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/DataSet/DataSet.cpp
r3464 r3469 150 150 } 151 151 /*}}}*/ 152 /*FUNCTION DataSet Demarshall{{{1*/152 /*FUNCTION DataSet::Demarshall{{{1*/ 153 153 DataSet* DataSetDemarshall(char* marshalled_dataset){ 154 154 … … 194 194 dataset->AddObject(node); 195 195 } 196 else if(enum_type==VertexEnum()){ 197 Vertex* vertex=NULL; 198 vertex=new Vertex(); 199 vertex->Demarshall(&marshalled_dataset); 200 dataset->AddObject(vertex); 201 } 196 202 else if(enum_type==ParamEnum()){ 197 203 Param* param=NULL; … … 959 965 dofobject=(DofObject*)(*object); 960 966 dofobject->DistributeDofs(&dofcount); 961 962 967 963 968 } -
issm/trunk/src/c/EnumDefinitions/EnumDefinitions.cpp
r3417 r3469 80 80 81 81 /*Grids: */ 82 int VertexEnum(void){ return420; }82 int VertexEnum(void){ return 420; } 83 83 int NodeEnum(void){ return 421; } 84 84 /*Loads: */ -
issm/trunk/src/c/objects/Vertex.cpp
r3464 r3469 215 215 /*}}}*/ 216 216 /*}}}*/ 217 /* DofObject routines: {{{1* 217 /* DofObject routines: {{{1*/ 218 218 /*FUNCTION Vertex DistributeDofs{{{2*/ 219 219 void Vertex::DistributeDofs(int* pdofcount){
Note:
See TracChangeset
for help on using the changeset viewer.