Changeset 4217 for issm/trunk/src/c/modules/ModelProcessorx/Prognostic/CreateConstraintsPrognostic.cpp
- Timestamp:
- 06/24/10 18:51:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/modules/ModelProcessorx/Prognostic/CreateConstraintsPrognostic.cpp
r4008 r4217 11 11 #include "../ModelProcessorx.h" 12 12 13 void CreateConstraintsPrognostic( DataSet** pconstraints, IoModel* iomodel,ConstDataHandle iomodel_handle){13 void CreateConstraintsPrognostic(Constraints** pconstraints, IoModel* iomodel,ConstDataHandle iomodel_handle){ 14 14 15 15 /*Intermediary*/ … … 18 18 19 19 /*Output*/ 20 DataSet* constraints = NULL;20 Constraints* constraints = NULL; 21 21 Spc* spc = NULL; 22 22 … … 25 25 26 26 /*Create constraints if they do not exist yet*/ 27 if(!constraints) constraints = new DataSet(ConstraintsEnum);27 if(!constraints) constraints = new Constraints(ConstraintsEnum); 28 28 29 29 /*Fetch data: */
Note:
See TracChangeset
for help on using the changeset viewer.