27 lines
366 B
C++
Executable File
27 lines
366 B
C++
Executable File
/**
|
|
*
|
|
* @file ieditable.hpp
|
|
*
|
|
* @authors D. Mathieu, M. Laporte
|
|
*
|
|
* @date 17/03/2010
|
|
*
|
|
* @version V2.0
|
|
*
|
|
**/
|
|
|
|
#ifndef IEDITABLE_HXX
|
|
#define IEDITABLE_HXX
|
|
|
|
#include <iostream>
|
|
|
|
#include "ieditable.h"
|
|
|
|
inline std::ostream& nsUtil::operator<<(std::ostream& os, const IEditable& Obj)
|
|
{
|
|
return Obj._Edit(os);
|
|
} // operator<<
|
|
|
|
#endif // IEDITABLE_HXX
|
|
|