We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8961271 commit e73fe41Copy full SHA for e73fe41
include/dynamic_graph_bridge/sot_loader.hh
@@ -83,7 +83,7 @@ class SotLoader : public SotLoaderBasic {
83
geometry_msgs::msg::TransformStamped freeFlyerPose_;
84
85
public:
86
- SotLoader();
+ SotLoader(const std::string &aNodeName=std::string("SotLoader"));
87
virtual ~SotLoader();
88
89
// \brief Create a thread for ROS and start the control loop.
src/sot_loader.cpp
@@ -56,8 +56,8 @@ struct DataToLog {
56
}
57
};
58
59
-SotLoader::SotLoader()
60
- : SotLoaderBasic(),
+SotLoader::SotLoader(const std::string &aNodeName)
+ : SotLoaderBasic(aNodeName),
61
sensorsIn_(),
62
controlValues_(),
63
angleEncoder_(),
0 commit comments