#ifndef _LINPOLYTRAJECTORY_H_ #define _LINPOLYTRAJECTORY_H_ #include "Trajectroy.h" template class LinearJointTrajectory: public Trajectory { public: LinearJointTrajectory( unsigned int steps_, float totalTime_, Vec jointMovement_); LinearJointTrajectory( unsigned int steps_, float totalTime_, Vec jointMovement_, Vec velocity_); ~LinearJointTrajectory(); private: protected: }; template class LinearCartTrajectory: public Trajectory { }; #endif