SMACC
Loading...
Searching...
No Matches
cb_rotate.h
Go to the documentation of this file.
1/*****************************************************************************************************************
2 * ReelRobotix Inc. - Software License Agreement Copyright (c) 2018
3 * Authors: Pablo Inigo Blasco, Brett Aldrich
4 *
5 ******************************************************************************************************************/
6#pragma once
7
9#include <tf/transform_listener.h>
10
11namespace cl_move_base_z
12{
14{
15public:
16 tf::TransformListener listener;
17
18 boost::optional<float> rotateDegree;
19
20 CbRotate();
21
22 CbRotate(float rotate_degree);
23
24 virtual void onEntry() override;
25};
26} // namespace cl_move_base_z
tf::TransformListener listener
Definition: cb_rotate.h:16
virtual void onEntry() override
Definition: cb_rotate.cpp:16
boost::optional< float > rotateDegree
Definition: cb_rotate.h:18