#ifndef GRASPREFLEX_HH #define GRASPREFLEX_HH #include "Behavior.hh" #include "RobotControl.hh" class GraspReflex : public Behavior { public: GraspReflex( char* name, priority_t priorityLevel, RobotControl* robot); protected: int run (); void onSuspend (); RobotControl* robot; }; #endif /* GRASPREFLEX_HH */