00001
00002
00003
00004
00005
00006
00007 #ifndef _DISPCTRL_H_
00008 #define _DISPCTRL_H_
00009
00010 #include "path.h"
00011
00012
00013
00014
00015 class cPathDCM : public cPath
00016 {
00017 protected:
00018 static int _NodeCtrl;
00019 static int _DirCtrl;
00020 static int _DofCtrl;
00021
00022 public:
00023 static void ReadParam (void);
00024 cPathDCM (void);
00025 ~cPathDCM (void) { }
00026 double IncLoadFac(cVector &, cVector &, cVector &);
00027
00028 private:
00029 static void GetDofCtrl(void);
00030 };
00031
00032 #endif