replacing #include <ros/ros.h> by #include <ros/console.h> where possible
This commit is contained in:
parent
f7735d9607
commit
5ddcc7da5e
|
@ -53,10 +53,12 @@
|
||||||
#include <urdf/model.h>
|
#include <urdf/model.h>
|
||||||
#include <urdf_interface/pose.h>
|
#include <urdf_interface/pose.h>
|
||||||
#include <angles/angles.h>
|
#include <angles/angles.h>
|
||||||
|
#include <ros/assert.h>
|
||||||
|
|
||||||
#include <boost/date_time/posix_time/posix_time.hpp>
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
||||||
#include <boost/date_time/posix_time/posix_time_io.hpp>
|
#include <boost/date_time/posix_time/posix_time_io.hpp>
|
||||||
#include <boost/format.hpp>
|
#include <boost/format.hpp>
|
||||||
|
#include <boost/array.hpp>
|
||||||
|
|
||||||
#include <assimp/assimp.hpp>
|
#include <assimp/assimp.hpp>
|
||||||
#include <assimp/aiScene.h>
|
#include <assimp/aiScene.h>
|
||||||
|
|
|
@ -35,6 +35,7 @@
|
||||||
/* Author: Tim Field */
|
/* Author: Tim Field */
|
||||||
|
|
||||||
#include "collada_urdf/collada_urdf.h"
|
#include "collada_urdf/collada_urdf.h"
|
||||||
|
#include <ros/ros.h>
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <ros/ros.h>
|
#include <ros/console.h>
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
#include <boost/lexical_cast.hpp>
|
#include <boost/lexical_cast.hpp>
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <tinyxml.h>
|
#include <tinyxml.h>
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
|
#include <boost/weak_ptr.hpp>
|
||||||
|
|
||||||
#include "joint.h"
|
#include "joint.h"
|
||||||
#include "color.h"
|
#include "color.h"
|
||||||
|
|
|
@ -40,12 +40,11 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <ros/ros.h>
|
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
#include <boost/lexical_cast.hpp>
|
#include <boost/lexical_cast.hpp>
|
||||||
|
|
||||||
#include <tinyxml.h> // FIXME: remove parser from here
|
#include <tinyxml.h> // FIXME: remove parser from here
|
||||||
#include <ros/ros.h>
|
#include <ros/console.h>
|
||||||
|
|
||||||
namespace urdf{
|
namespace urdf{
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
/* Author: John Hsu */
|
/* Author: John Hsu */
|
||||||
|
|
||||||
#include <urdf_interface/joint.h>
|
#include <urdf_interface/joint.h>
|
||||||
#include <ros/ros.h>
|
#include <ros/console.h>
|
||||||
#include <boost/lexical_cast.hpp>
|
#include <boost/lexical_cast.hpp>
|
||||||
|
|
||||||
namespace urdf{
|
namespace urdf{
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
|
|
||||||
#include <urdf_interface/link.h>
|
#include <urdf_interface/link.h>
|
||||||
#include <ros/ros.h>
|
#include <ros/console.h>
|
||||||
#include <ros/package.h>
|
#include <ros/package.h>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <boost/lexical_cast.hpp>
|
#include <boost/lexical_cast.hpp>
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
/* Author: Wim Meeussen */
|
/* Author: Wim Meeussen */
|
||||||
|
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
#include <ros/ros.h>
|
#include <ros/console.h>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "urdf_parser/urdf_parser.h"
|
#include "urdf_parser/urdf_parser.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue