robotconfiguration.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Pilz GmbH & Co. KG
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef ROBOTCONFIGURATION_H
18 #define ROBOTCONFIGURATION_H
19 
20 #include <string>
21 
23 
26 
28 {
33 {
34 public:
36 
37  RobotConfiguration(const std::string& group_name);
38 
39  RobotConfiguration(const std::string& group_name, const moveit::core::RobotModelConstPtr& robot_model);
40 
41 public:
42  void setRobotModel(moveit::core::RobotModelConstPtr robot_model);
43  void setGroupName(const std::string& group_name);
44  std::string getGroupName() const;
45  void clearModel();
46 
47 protected:
48  std::string group_name_;
49  moveit::core::RobotModelConstPtr robot_model_;
50 };
51 
52 inline void RobotConfiguration::setRobotModel(moveit::core::RobotModelConstPtr robot_model)
53 {
54  robot_model_ = robot_model;
55 }
56 
57 inline void RobotConfiguration::setGroupName(const std::string& group_name)
58 {
59  group_name_ = group_name;
60 }
61 
62 inline std::string RobotConfiguration::getGroupName() const
63 {
64  return group_name_;
65 }
66 
68 {
69  robot_model_ = nullptr;
70 }
71 
72 } // namespace pilz_industrial_motion_testutils
73 
74 #endif // ROBOTCONFIGURATION_H
Interface class to express that a derived class can be converted into a moveit_msgs::RobotState.
void setGroupName(const std::string &group_name)
Interface class to express that a derived class can be converted into a moveit_msgs::Constaints.
Class to define robot configuration in space.
void setRobotModel(moveit::core::RobotModelConstPtr robot_model)


pilz_industrial_motion_testutils
Author(s):
autogenerated on Mon Feb 28 2022 23:13:36