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