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 PlainHandler_h
00027 #define PlainHandler_h
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include <ConstraintHandler.h>
00043
00044 #include <FE_Element.h>
00045 #include <DOF_Group.h>
00046
00058 class PlainHandler : public ConstraintHandler
00059 {
00060 public:
00065 PlainHandler();
00066
00072 ~PlainHandler();
00073
00074
00096 int handle(const ID *nodesNumberedLast =0);
00097
00104 void clearAll(void);
00105
00106
00110 int sendSelf(int commitTag, Channel &theChannel);
00111
00115 int recvSelf(int commitTag, Channel &theChannel,
00116
00117 FEM_ObjectBroker &theBroker);
00118
00119 protected:
00120
00121 private:
00123 FE_Element **theFEs;
00124
00126 DOF_Group **theDOFs;
00128 int numFE;
00130 int numDOF;
00131 };
00132
00133 #endif
00134
00135
00136
00137