Changeset 15419
- Timestamp:
- 07/03/13 16:06:15 (12 years ago)
- Location:
- issm/trunk-jpl/src/c/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/IoModel.cpp
r15321 r15419 31 31 this->my_vertices=NULL; 32 32 33 this->elements=NULL; 34 this->edges=NULL; 33 35 this->singlenodetoelementconnectivity=NULL; 34 36 this->numbernodetoelementconnectivity=NULL; … … 66 68 this->my_vertices=NULL; 67 69 70 FetchData(&this->dim,MeshDimensionEnum); 71 this->elements=NULL; 72 this->edges=NULL; 68 73 this->singlenodetoelementconnectivity=NULL; 69 74 this->numbernodetoelementconnectivity=NULL; -
issm/trunk-jpl/src/c/classes/IoModel.h
r14960 r15419 31 31 int *my_vertices; 32 32 33 /*Connectivity tables*/ 33 /*Mesh properties and connectivity tables*/ 34 int dim; 35 int *elements; 36 int *edges; 34 37 int *singlenodetoelementconnectivity; 35 38 int *numbernodetoelementconnectivity;
Note:
See TracChangeset
for help on using the changeset viewer.