Changeset 4244 for issm/trunk/src/c/objects/Materials/Material.h
- Timestamp:
- 06/25/10 17:37:18 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Materials/Material.h
r4091 r4244 14 14 /*}}}*/ 15 15 16 class Material: public Object {16 class Material: public Object,public Update{ 17 17 18 18 public: … … 25 25 virtual int MarshallSize()=0; 26 26 virtual void Demarshall(char** pmarshalled_dataset)=0; 27 virtual void UpdateFromInputs(void* inputs)=0;28 virtual void InputUpdateFromVector(double* vector, int name, int type)=0;29 virtual void InputUpdateFromVector(int* vector, int name, int type)=0;30 virtual void InputUpdateFromVector(bool* vector, int name, int type)=0;31 virtual void InputUpdateFromSolution(double* solution)=0;32 33 27 }; 34 28 #endif
Note:
See TracChangeset
for help on using the changeset viewer.