00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef Material_h
00027 #define Material_h
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include <DomainComponent.h>
00043 #include <MovableObject.h>
00044
00045 #include <Information.h>
00046 #include <Response.h>
00047
00058 class Material : public TaggedObject, public MovableObject
00059 {
00060 public:
00062 Material(int tag, int classTag);
00063
00065 virtual ~Material();
00066
00068 virtual int setVariable(const char *argv);
00070 virtual int getVariable(int variableID, double &info);
00071
00073 virtual int setParameter(char **argv, int argc, Information &eleInformation);
00075 virtual int updateParameter(int responseID, Information &eleInformation);
00076
00078 virtual Response *setResponse(char **argv, int argc, Information &info);
00080 virtual int getResponse(int responseID, Information &info);
00081
00083 virtual void update(void) {return;}
00084
00085 protected:
00086
00087 private:
00088 };
00089
00090
00091 #endif
00092