SMACC
Loading...
Searching...
No Matches
cb_move_named_target.h
Go to the documentation of this file.
1/*****************************************************************************************************************
2 * ReelRobotix Inc. - Software License Agreement Copyright (c) 2018-2020
3 * Authors: Pablo Inigo Blasco, Brett Aldrich
4 *
5 ******************************************************************************************************************/
6
7#pragma once
8
11#include <map>
12#include <string>
13
15{
16 //named targets are configured in the urdf file
18{
19protected:
21 std::string namedTarget_;
22
23public:
24 CbMoveNamedTarget(std::string namedtarget);
25
26 virtual void onEntry() override;
27
28 virtual void onExit() override;
29
30 std::map<std::string, double> getNamedTargetValues();
31};
32} // namespace cl_move_group_interface
std::map< std::string, double > getNamedTargetValues()