1 #ifndef KITT_TEENSY_ROS_NODE_ROS_PARAM_HELPER_H_
2 #define KITT_TEENSY_ROS_NODE_ROS_PARAM_HELPER_H_
23 bool getParam(
const char* name,
int* param);
35 bool getParam(
const char* name,
int* param,
int defaultValue);
47 int getParam(
const char* name,
int defaultValue);
57 bool getParam(
const char* name,
float* param);
69 bool getParam(
const char* name,
float* param,
float defaultValue);
81 float getParam(
const char* name,
float defaultValue);
91 bool getParam(
const char* name,
char** param);
103 bool getParam(
const char* name,
char** param,
char* defaultValue);
RosParamHelper(ros::NodeHandle nh)
Definition: RosParamHelper.cpp:3
ros::NodeHandle nh_
Definition: RosParamHelper.h:106
bool getParam(const char *name, int *param)
Retrieves int parameter from ros and sets it into the param.
Definition: RosParamHelper.cpp:7
Class to help simplify access to ros parameters.
Definition: RosParamHelper.h:10