#pragma once #include "TrackPoint.hpp" #include #include #include #include class StoreHandler { public: void addTrackingPoint(osg::Vec3 point, osg::Vec3 normal); StoreHandler(osg::ref_ptr root); std::vector getPoints(); protected: std::vector points; private: osg::ref_ptr _root; };