Skip to content
Snippets Groups Projects
Commit 194d35dd authored by Vladimír Petrík's avatar Vladimír Petrík
Browse files

Switch to std pointer and fix wrong include path.

parent a46f3b06
No related branches found
No related tags found
No related merge requests found
...@@ -9,12 +9,12 @@ ...@@ -9,12 +9,12 @@
#ifndef DYNAMIC_GRAPH_BRIDGE_FWD_HH #ifndef DYNAMIC_GRAPH_BRIDGE_FWD_HH
#define DYNAMIC_GRAPH_BRIDGE_FWD_HH #define DYNAMIC_GRAPH_BRIDGE_FWD_HH
#include <dynamic-graph/python/fwd.hh> #include <dynamic-graph/fwd.hh>
namespace dynamicgraph { namespace dynamicgraph {
// classes defined in sot-core // classes defined in sot-core
class Interpreter; class Interpreter;
typedef shared_ptr<Interpreter> InterpreterPtr_t; typedef std::shared_ptr<Interpreter> InterpreterPtr_t;
}// namespace dynamicgraph }// namespace dynamicgraph
#endif // DYNAMIC_GRAPH_PYTHON_FWD_HH #endif // DYNAMIC_GRAPH_PYTHON_FWD_HH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment