[╯°□°]╯︵┻━┻
|
00001 #ifndef PRJ_ARCHIMED_H 00002 #define PRJ_ARCHIMED_H 00003 00004 #include <set> 00005 #include "Obj.h" 00006 #include "Force.h" 00007 00008 class Archimed : public Force{ 00009 public: 00010 void force(); 00011 Archimed(set<Obj*>& tab, double rho); 00012 private: 00013 double rho; 00014 set<Obj*>* tabObj; 00015 }; 00016 00017 00018 00019 #endif