diff --git a/hurricane/src/hurricane/hurricane/Commons.h b/hurricane/src/hurricane/hurricane/Commons.h index 192731af..2f021890 100644 --- a/hurricane/src/hurricane/hurricane/Commons.h +++ b/hurricane/src/hurricane/hurricane/Commons.h @@ -663,10 +663,6 @@ inline Hurricane::Record* getRecord ( const std::multiset* s ) } \ -//inline tstream& operator<< ( tstream& o, Data* d ) \ -//{ if (o.enabled()) static_cast(o) << d; return o; } - - # define GETRECORD_POINTER_SUPPORT(Data) \ template<> inline Hurricane::Record* getRecord( Data* data ) \ { if (!data) return NULL; return data->_getRecord(); } \ @@ -691,10 +687,6 @@ inline Hurricane::Record* getRecord ( const std::multiset* s ) { return o << getString(d); } \ \ -// inline tstream& operator<< ( tstream& o, Data& d ) \ -//{ if (o.enabled()) static_cast(o) << d; return o; } - - # define GETRECORD_REFERENCE_SUPPORT(Data) \ template<> inline Hurricane::Record* getRecord( Data& data ) \ { return data._getRecord(); } \