Conversation
|
Is this going to be merged and deployed anytime soon? Btw, I get the error when I try to instantiate the param struct manually: ros::NodeHandle pnh("~");
my_package::MyNodeParameters params(pnh);
params.fromParamServer();Is there a better way of doing it, maybe withouth NodeHandle? I just want to get the struct with the default values. |
|
Indeed this has been pending for a while now, my bad. The current API does not offer the possibility to instantiate the default values without a |
|
@beetleskin FYI I will wait some more changes before releasing again (hopefully #37) as the issue this PR fixes is annoying but not critical. Notice that #37 also initializes parameters with default value at construction time cutting the need from calling my_package::MyNodeParameters params(ros::NodeHandle("~"));
my_var_with_default = params.my_var_with_default;I'll evaluate later the need & implications of a |
|
seems legit, thanks! |
|
any release date in sight here? :) |
|
.. not? |
|
Hi there, |
|
@beetleskin FYI release 0.1.4 is on the way for Indigo/Kinetic & Lunar 👍. |
Do not print error message while retrieving a param with default value.
Fix #47 .