Timendainum

Stop.h

Nov 6th, 2014
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #ifndef __STOP_H__
  2. #define __STOP_H__
  3.  
  4. #include "MotorDriver.h"
  5. #include "Task.h"
  6.  
  7. class Stop: public Task
  8. {
  9. public:
  10.     Stop();
  11.     virtual void execute();
  12. };
  13.  
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment