CoordinationCore.cpp
Go to the documentation of this file.
1#include "CoordinationCore.h"
2
4{
5
6 void
7 Coordination::setNodesetList(const std::string& nodesetLeft, const std::string& nodesetRight)
8 {
9 nodesetList_.clear();
10 nodesetList_.push_back(nodesetLeft);
11 nodesetList_.push_back(nodesetRight);
12 nodesetLeft_ = nodesetLeft;
13 nodesetRight_ = nodesetRight;
14 }
15
16 const std::vector<std::string>&
18 {
19 return nodesetList_;
20 }
21
22 std::string&
24 {
25 return nodesetLeft_;
26 }
27
28 std::string&
30 {
31 return nodesetRight_;
32 }
33
34 bool
39} // namespace armarx::control::common::coordination
const std::vector< std::string > & getNodesetList()
void setNodesetList(const std::string &nodesetLeft, const std::string &nodesetRight)