ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Afaict, std
is a namespace. But std_srvs::Empty
is a type, not a namespace, so you can't bring it out by a using
declaration.
2 | No.2 Revision |
Afaict, std
is a namespace. But std_srvs::Empty
is a type, not a namespace, so you can't bring it Request
or Response
out by a using
declaration.
3 | No.3 Revision |
Afaict, std
is a namespace. But std_srvs::Empty
is a type, type (in the std_srvs
namespace), not a namespace, namespace itself, so you can't bring Request
or Response
out by a using
declaration.
See this random post on SO that deals with the same issue.