Skip to content
Snippets Groups Projects
Commit 21630fa8 authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

Move class Contiifstream into namespace dynamicgraph.

     * include/dynamic-graph/contiifstream.h,
     * src/debug/contiifstream.cpp.

     Otherwise, the package does not compile in debug mode.
parent 639b8d1d
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,8 @@ ...@@ -52,6 +52,8 @@
#else #else
# define DYNAMICGRAPHCONTIIFSTREAM_EXPORT # define DYNAMICGRAPHCONTIIFSTREAM_EXPORT
#endif #endif
namespace dynamicgraph {
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
/* --- CLASS ----------------------------------------------------------- */ /* --- CLASS ----------------------------------------------------------- */
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
...@@ -79,7 +81,7 @@ public: /* --- READ LIST --- */ ...@@ -79,7 +81,7 @@ public: /* --- READ LIST --- */
}; };
} // namespace dynamicgraph
#endif /* #ifndef __CONTIIFSTREAM_HH__ */ #endif /* #ifndef __CONTIIFSTREAM_HH__ */
......
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
#include <dynamic-graph/contiifstream.h> #include <dynamic-graph/contiifstream.h>
#include <dynamic-graph/debug.h> #include <dynamic-graph/debug.h>
using namespace dynamicgraph;
Contiifstream:: Contiifstream::
Contiifstream( const std::string& n ) Contiifstream( const std::string& n )
:filename(n),cursor(0),first(true) {} :filename(n),cursor(0),first(true) {}
......
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