Where is platform.h?
I wrote a publisher in c++ and I must include platform.h, but I cannot find it in any directory, and include the directory.Where is platform.h?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
I wrote a publisher in c++ and I must include platform.h, but I cannot find it in any directory, and include the directory.Where is platform.h?
ROS does a lot of magic behind the scenes in the build system that makes searching for headers like this unnecessary.
Instead, you should add the proper dependency to your manifest, which will automatically set up the proper include and library compile flags.
In this case, I'm guessing that you need to add a dependency on roscpp.
Are you looking for that: ./stacks/ros_comm/utilities/cpp_common/include/ros/platform.h ?
I think I can answer this on myown, I discovered the command line find that helped a lot.
Thank you a lot, is there any command that finds them?Because I am also looking for console.h
Asked: 2012-01-11 01:13:23 -0500
Seen: 1,128 times
Last updated: Jan 12 '12
Subscriber and Publisher node at once in cpp
how does second term of advertise
How do I test the ROS version in C++ code?
Getting all parameter names using C++
Are there any other signal interrupts with roscpp besides the default ctrl+c sigint handler
Is it possible to avoid busy-waiting in a spinner? [closed]
Can I "overload" topic names in ROS? (Different versions by datatype)