AUV-Coop-Assembly
Master Thesis for Robotics Engineering. Cooperative peg-in-hole assembly with two underwater vehicles guided by vision
lastTask.h
1 #ifndef LASTTASK_H
2 #define LASTTASK_H
3 
4 #include "task.h" // task.h will include other header (like cmat and eigen)
5 
9 class LastTask : public Task {
10 
11 public:
12  LastTask(int dimension, bool eqType, std::string robotName);
13 private: //to not use, so putted private
14  int updateMatrices(struct Infos* const robInfo);
15 };
16 
17 
18 #endif // LASTTASK_H
"Fake" Task needed as last to algorithm, it has all fixed matrices of eye and zeros so no setxx are n...
Definition: lastTask.h:9
Definition: infos.h:117
ABSTRACT class task. Each task is a derived class of this class. It contains all the variable that th...
Definition: task.h:17