00001 #ifndef _MY_CompressibleDynamic_
00002 #define _MY_CompressibleDynamic_
00003
00004
00010 class CompressibleDynamic : public DynamicBase
00011 {
00012 private:
00013
00014 protected:
00015
00016 public:
00017 virtual void setDt(double dt)
00018 {throw new Exception("Method CompressibleDynamicBase::setDt() not implemented\n");}
00019
00020
00021 virtual void rollback(){throw new Exception("Method CompressibleDynamicBase::rollback() not implemented\n");}
00022 };
00023
00024 #endif