/******************************************************************************/ /* SRD - TEXT STORAGE - INLINE CODE *******************************************/ /******************************************************************************/ #ifndef _H_EBCL_INLINE_SRDTEXT #define _H_EBCL_INLINE_SRDTEXT #include 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