#ifndef HI #define HI // your declarations (and certain types of definitions) here #include #include "jointtransform.h" class Keyframe{ private: float timestamp_; std::map pose_; public: Keyframe() = default; Keyframe(float timestamp,std::map pose); float gettimestamp(); std::map getJointKeyFrames(); }; #endif