Changeset 5610
- Timestamp:
- 08/27/10 10:59:07 (15 years ago)
- Location:
- issm/trunk/src/c/objects/Loads
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Loads/Riftfront.cpp
r5608 r5610 327 327 /*update input*/ 328 328 this->inputs->AddInput(new IntInput(name,constant)); 329 330 } 331 /*}}}*/ 332 /*FUNCTION Riftfront::InputUpdateFromConstant(double constant,int name) {{{1*/ 333 void Riftfront::InputUpdateFromConstant(double constant,int name){ 334 335 /*Check that name is a Riftfront input*/ 336 if (!IsInput(name)) return; 337 338 /*update input*/ 339 this->inputs->AddInput(new DoubleInput(name,constant)); 329 340 330 341 } -
issm/trunk/src/c/objects/Loads/Riftfront.h
r5311 r5610 66 66 void InputUpdateFromVectorDakota(int* vector, int name, int type){ISSMERROR("Not implemented yet!");} 67 67 void InputUpdateFromVectorDakota(bool* vector, int name, int type){ISSMERROR("Not implemented yet!");} 68 void InputUpdateFromConstant(double constant, int name) {ISSMERROR("Not implemented yet!");}68 void InputUpdateFromConstant(double constant, int name); 69 69 void InputUpdateFromConstant(int constant, int name); 70 70 void InputUpdateFromConstant(bool constant, int name){ISSMERROR("Not implemented yet!");}
Note:
See TracChangeset
for help on using the changeset viewer.