CORC Project
CANOpen Robot Controller Software Documentation
TrajectoryGenerator.h
Go to the documentation of this file.
1 
13 #ifndef TRAJECTORYGENERATOR_H_INCLUDED
14 #define TRAJECTORYGENERATOR_H_INCLUDED
15 
16 #include <vector>
17 
24  public:
26 
34  virtual bool initialiseTrajectory() = 0;
35 
42  virtual std::vector<double> getSetPoint(double time) = 0;
43 };
44 
45 #endif
virtual std::vector< double > getSetPoint(double time)=0
Get the next step point in the trajectory.
virtual bool initialiseTrajectory()=0
Pure Virtual Function which must be configured to configure the trajectory generator with the appropr...
Abstract class which is used to generate trajectorys for a Robot to follow.