corelib/include/ebcl/inline/SRDText.hh

26 lines
731 B
C++
Raw Normal View History

/******************************************************************************/
/* SRD - TEXT STORAGE - INLINE CODE *******************************************/
/******************************************************************************/
#ifndef _H_LW_LIB_INLINE_SRDTEXT
#define _H_LW_LIB_INLINE_SRDTEXT
#include <lw/lib/SRDText.hh>
namespace lw {
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_LW_LIB_INLINE_SRDTEXT