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
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef PlainNumberer_h
00041 #define PlainNumberer_h
00042
00043 #define START_EQN_NUMBER 0
00044
00045 #include <DOF_Numberer.h>
00046
00060 class PlainNumberer: public DOF_Numberer
00061 {
00062 public:
00067 PlainNumberer();
00068
00072 ~PlainNumberer();
00073
00074
00088 int numberDOF(int lastDOF = -1);
00089
00095 int numberDOF(ID &lastDOFs);
00096
00097
00101 virtual int sendSelf(int commitTag, Channel &theChannel);
00102
00112 virtual int recvSelf(int commitTag, Channel &theChannel,
00113
00114 FEM_ObjectBroker &theBroker);
00115
00116 protected:
00117
00118 private:
00119
00120 };
00121
00122 #endif
00123