corelib/include/ebcl/inline/SRDText.hh

26 lines
725 B
C++
Raw Normal View History

/******************************************************************************/
/* SRD - TEXT STORAGE - INLINE CODE *******************************************/
/******************************************************************************/
#ifndef _H_EBCL_INLINE_SRDTEXT
#define _H_EBCL_INLINE_SRDTEXT
#include <ebcl/SRDText.hh>
namespace ebcl {
inline void SRDWriteAsText( A_OutputStream& output , T_SRDList const& data )
{
T_SRDTextWriter( output ).start( ).putList( data ).end( );
}
/*= T_SRDTextReader ==========================================================*/
inline T_SRDTextReader::T_SRDTextReader( A_SRDReaderTarget& target )
: A_SRDReader( target )
{ }
} // namespace
#endif // _H_EBCL_INLINE_SRDTEXT