Changeset 44 in flair-dev for trunk/include/FlairMeta/MetaVrpnObject.h
- Timestamp:
- Jan 6, 2017, 1:58:28 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairMeta/MetaVrpnObject.h
r13 r44 18 18 19 19 namespace flair { 20 namespace core { 21 class Vector3D; 22 class FloatType; 23 } 24 namespace gui { 25 class DataPlot1D; 26 class DataPlot2D; 27 class Tab; 28 } 29 namespace filter { 30 class EulerDerivative; 31 class LowPassFilter; 32 } 33 namespace sensor { 34 class VrpnClient; 35 } 20 namespace core { 21 class Vector3D; 22 class FloatType; 23 } 24 namespace gui { 25 class DataPlot1D; 26 class DataPlot2D; 27 class Tab; 28 } 29 namespace filter { 30 class EulerDerivative; 31 class LowPassFilter; 32 } 36 33 } 37 34 … … 47 44 class MetaVrpnObject : public sensor::VrpnObject { 48 45 public: 49 MetaVrpnObject(const sensor::VrpnClient *parent, std::string name); 50 MetaVrpnObject(const sensor::VrpnClient *parent, std::string name, 51 uint8_t id); 46 MetaVrpnObject(std::string name); 47 MetaVrpnObject(std::string name,uint8_t id); 52 48 ~MetaVrpnObject(); 53 49 gui::DataPlot1D *VxPlot(void) const; // 1,0 … … 58 54 59 55 private: 60 void ConstructorCommon( const sensor::VrpnClient *parent,std::string name);56 void ConstructorCommon(std::string name); 61 57 filter::LowPassFilter *pbas; 62 58 filter::EulerDerivative *euler;
Note:
See TracChangeset
for help on using the changeset viewer.