Skip to content
Snippets Groups Projects
Commit 93c02c09 authored by Thomas Moulard's avatar Thomas Moulard
Browse files

Fix naming.

parent 1a5ca968
No related branches found
No related tags found
No related merge requests found
lib/ lib/
msg/lisp/ msg/lisp/
msg/java/
msg_gen/ msg_gen/
src/dynamic_graph/ src/dynamic_graph_bridge/
bin/ bin/
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
# include <boost/bind.hpp> # include <boost/bind.hpp>
# include <jrl/mal/boost.hh> # include <jrl/mal/boost.hh>
# include <std_msgs/Float64.h> # include <std_msgs/Float64.h>
# include "dynamic_graph/Matrix.h" # include "dynamic_graph_bridge/Matrix.h"
# include "dynamic_graph/Vector.h" # include "dynamic_graph_bridge/Vector.h"
namespace ml = maal::boost; namespace ml = maal::boost;
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
# define DYNAMIC_GRAPH_ROS_IMPORT_HXX # define DYNAMIC_GRAPH_ROS_IMPORT_HXX
# include <vector> # include <vector>
# include <std_msgs/Float64.h> # include <std_msgs/Float64.h>
# include "dynamic_graph/Matrix.h" # include "dynamic_graph_bridge/Matrix.h"
# include "dynamic_graph/Vector.h" # include "dynamic_graph_bridge/Vector.h"
# include "sot_to_ros.hh" # include "sot_to_ros.hh"
......
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
# include <vector> # include <vector>
# include <jrl/mal/boost.hh> # include <jrl/mal/boost.hh>
# include <std_msgs/Float64.h> # include <std_msgs/Float64.h>
# include "dynamic_graph/Matrix.h" # include "dynamic_graph_bridge/Matrix.h"
# include "dynamic_graph/Vector.h" # include "dynamic_graph_bridge/Vector.h"
namespace dynamicgraph namespace dynamicgraph
{ {
...@@ -27,8 +27,8 @@ namespace dynamicgraph ...@@ -27,8 +27,8 @@ namespace dynamicgraph
struct SotToRos<ml::Matrix> struct SotToRos<ml::Matrix>
{ {
typedef ml::Matrix sot_t; typedef ml::Matrix sot_t;
typedef dynamic_graph::Matrix ros_t; typedef dynamic_graph_bridge::Matrix ros_t;
typedef dynamic_graph::MatrixConstPtr ros_const_ptr_t; typedef dynamic_graph_bridge::MatrixConstPtr ros_const_ptr_t;
typedef dynamicgraph::SignalTimeDependent<sot_t, int> signal_t; typedef dynamicgraph::SignalTimeDependent<sot_t, int> signal_t;
typedef boost::function<sot_t& (sot_t&, int)> callback_t; typedef boost::function<sot_t& (sot_t&, int)> callback_t;
}; };
...@@ -37,8 +37,8 @@ namespace dynamicgraph ...@@ -37,8 +37,8 @@ namespace dynamicgraph
struct SotToRos<ml::Vector> struct SotToRos<ml::Vector>
{ {
typedef ml::Vector sot_t; typedef ml::Vector sot_t;
typedef dynamic_graph::Vector ros_t; typedef dynamic_graph_bridge::Vector ros_t;
typedef dynamic_graph::VectorConstPtr ros_const_ptr_t; typedef dynamic_graph_bridge::VectorConstPtr ros_const_ptr_t;
typedef dynamicgraph::SignalTimeDependent<sot_t, int> signal_t; typedef dynamicgraph::SignalTimeDependent<sot_t, int> signal_t;
typedef boost::function<sot_t& (sot_t&, int)> callback_t; typedef boost::function<sot_t& (sot_t&, int)> callback_t;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment