TDataSection.hh

TDataSectionクラスの解説 TDataSection.cc
// ============================================================================
//  $Id$
//  $Name$
// ============================================================================
#ifndef __TDATASECTION_HH
#define __TDATASECTION_HH

#include "TGlobals.hh"
#include "TStreamableObject.hh"
#include "TDataSegmentList.hh"

class TOutputObjectStream;

class TDataSection
  : public TStreamableObject, public TDataSegmentList
{

  public:
    TDataSection( Tint id = tIDunknown, Tint capacity = tDefaultCapacity );
    ~TDataSection();

    Tvoid Print( Tostream& tos = Tstd::Tcout );
    Tint GetDataSize();
    Tint WriteData( TOutputObjectStream* objectfile );
    
};

#endif
$Id$
$Name$