User Tools

Site Tools


eeros_architecture:sequencer:step_or_sequence

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revisionBoth sides next revision
eeros_architecture:sequencer:step_or_sequence [2019/03/14 09:25] – created grafeeros_architecture:sequencer:step_or_sequence [2019/03/21 07:56] – [Alternative Solution] graf
Line 25: Line 25:
 <code cpp> <code cpp>
 class Move : public Step { class Move : public Step {
-  Move(std::string name, Sequencer& seq, BaseSequence* caller) : Step(name, seq, caller) { }+  Move(std::string name, Sequence* caller) : Step(name, caller) { }
      
   int action() {   int action() {
Line 38: Line 38:
 class Readying : public Sequence { class Readying : public Sequence {
 public: public:
-  Readying(std::string name, Sequencer& seq) : Sequence(name, seq), move("move", seq, this) {setNonBlocking();}+  Readying(std::string name, Sequencer& seq) : Sequence(name, seq), move("move", this) {setNonBlocking();}
  
   int action() {   int action() {
eeros_architecture/sequencer/step_or_sequence.txt · Last modified: 2020/05/22 11:10 by ursgraf