Changeset 158 in flair-src for trunk/lib/FlairSimulator/src/unexported
- Timestamp:
- Mar 5, 2017, 10:50:56 AM (8 years ago)
- Location:
- trunk/lib/FlairSimulator/src/unexported
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSimulator/src/unexported/GenericObject.h
r134 r158 34 34 namespace flair { 35 35 namespace simulator { 36 class Simulator;37 36 38 37 class GenericObject { … … 40 39 41 40 public: 42 GenericObject( Simulator *parent,irr::scene::IMesh *mesh);41 GenericObject(irr::scene::IMesh *mesh); 43 42 virtual ~GenericObject(); 44 43 -
trunk/lib/FlairSimulator/src/unexported/Model_impl.h
r69 r158 66 66 { 67 67 public: 68 #ifdef GL 69 Model_impl(flair::simulator::Model *self, std::string name, 70 irr::scene::ISceneManager *scenemanager, vrpn_Connection_IP *vrpn); 71 #else 72 Model_impl(flair::simulator::Model *self, std::string name, 73 vrpn_Connection_IP *vrpn); 74 #endif 68 Model_impl(flair::simulator::Model *self, std::string name,uint32_t modelId); 75 69 ~Model_impl(); 76 70 … … 100 94 flair::gui::TabWidget *tabwidget; 101 95 flair::gui::DoubleSpinBox *dT; 96 int modelId; 102 97 103 98 private: -
trunk/lib/FlairSimulator/src/unexported/Simulator_impl.h
r15 r158 29 29 } 30 30 31 class Model_impl; 32 31 33 class Simulator_impl : public vrpn_Connection_IP, private flair::core::Thread { 32 friend class flair::simulator::Model;34 friend class ::Model_impl; 33 35 friend class flair::simulator::GenericObject; 34 36
Note:
See TracChangeset
for help on using the changeset viewer.