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