update
This commit is contained in:
Submodule src/Libraries/common_msgs updated: b8b0528f1e...98543e6c54
Submodule src/Libraries/costmap_2d updated: 81e7874274...9026c03e1e
@@ -14,7 +14,7 @@
|
||||
#include <map>
|
||||
#include <yaml-cpp/yaml.h>
|
||||
#include <filesystem>
|
||||
#include <robot/node_handle.h>
|
||||
#include <robot/robot.h>
|
||||
|
||||
namespace robot
|
||||
{
|
||||
|
||||
12
src/Libraries/robot_cpp/include/robot/robot.h
Normal file
12
src/Libraries/robot_cpp/include/robot/robot.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#ifndef ROBOT_ROBOT_H
|
||||
#define ROBOT_ROBOT_H
|
||||
|
||||
#include <robot/init.h>
|
||||
#include <robot/time.h>
|
||||
#include <robot/timer.h>
|
||||
#include <robot/rate.h>
|
||||
#include <robot/console.h>
|
||||
#include <robot/node_handle.h>
|
||||
#include <robot/plugin_loader_helper.h>
|
||||
|
||||
#endif
|
||||
@@ -1981,6 +1981,11 @@ namespace robot
|
||||
template float NodeHandle::param<float>(const std::string ¶m_name) const;
|
||||
template float NodeHandle::param<float>(const std::string ¶m_name, const float &default_val) const;
|
||||
template bool NodeHandle::param<float>(const std::string ¶m_name, float ¶m_val, const float &default_val) const;
|
||||
|
||||
// Vector<std::string> instantiations
|
||||
template std::vector<std::string> NodeHandle::param<std::vector<std::string>>(const std::string ¶m_name) const;
|
||||
template std::vector<std::string> NodeHandle::param<std::vector<std::string>>(const std::string ¶m_name, const std::vector<std::string> &default_val) const;
|
||||
template bool NodeHandle::param<std::vector<std::string>>(const std::string ¶m_name, std::vector<std::string> ¶m_val, const std::vector<std::string> &default_val) const;
|
||||
|
||||
// Static member initialization
|
||||
std::string NodeHandle::config_directory_;
|
||||
|
||||
Submodule src/Libraries/robot_time updated: 35b77e9fa2...750dc94c61
Reference in New Issue
Block a user