// ============================================================================
// $Id$
// $Name$
// ============================================================================
#include "TInputObjectStream.hh"
#include "TDataFilter.hh"
TInputObjectStream::TInputObjectStream( Tstream_t streamtype )
: TObjectStream( streamtype ), theLastDataSize( 0 ), theDataSize( 0 )
{;}
TInputObjectStream::TInputObjectStream( TDataFilter* filter, Tstream_t streamtype )
: TObjectStream( filter, streamtype ), theLastDataSize( 0 ), theDataSize( 0 )
{;}
TInputObjectStream::~TInputObjectStream()
{;}
|