@@ -48,17 +48,14 @@ namespace dynamicgraph
4848 : SignalCastRegisterer (typeid (T), disp, cast, trace)
4949 {}
5050
51- DYNAMIC_GRAPH_DLLEXPORT
52- static boost::any cast (std::istringstream& iss);
51+ static boost::any cast (std::istringstream& iss);
5352
54- DYNAMIC_GRAPH_DLLEXPORT
55- static void disp (const boost::any& object, std::ostream& os)
53+ static void disp (const boost::any& object, std::ostream& os)
5654 {
5755 os << boost::any_cast<T> (object) << std::endl;
5856 }
5957
60- DYNAMIC_GRAPH_DLLEXPORT
61- static void trace (const boost::any& object, std::ostream& os)
58+ static void trace (const boost::any& object, std::ostream& os)
6259 {
6360 disp (object,os);
6461 }
@@ -156,15 +153,12 @@ public:
156153 static void disp( TYPE const & t,std::ostream& os ) DISP \
157154 static void trace( TYPE const & t,std::ostream& os ) TRACE \
158155public: \
159- DYNAMIC_GRAPH_DLLEXPORT \
160156 static boost::any cast_( std::istringstream& stringValue ) { \
161157 return boost::any_cast<TYPE>(cast (stringValue)); \
162158 } \
163- DYNAMIC_GRAPH_DLLEXPORT \
164159 static void disp_ ( const boost::any& t,std::ostream& os ) { \
165160 disp (boost::any_cast<TYPE>(t), os); \
166161 } \
167- DYNAMIC_GRAPH_DLLEXPORT \
168162 static void trace_ ( const boost::any& t,std::ostream& os ) { \
169163 trace (boost::any_cast<TYPE>(t),os); \
170164 } \
0 commit comments