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 #ifndef RigidDiaphragm_h
00037 #define RigidDiaphragm_h
00038
00039 #include <iostream.h>
00040
00041 #include <Domain.h>
00042 #include <ID.h>
00043
00045 class RigidDiaphragm
00046 {
00047 public:
00049 RigidDiaphragm(Domain &theDomain, int nodeR, ID &nodeC,
00050 int perpDirnToPlaneConstrained, int startMPtag);
00052 virtual ~RigidDiaphragm();
00053
00054 protected:
00055
00056 private:
00057 };
00058
00059 #endif
00060 ÿ