inlib  1.2.0
Public Member Functions
inlib::wroot::streamer_object Class Reference
Inheritance diagram for inlib::wroot::streamer_object:
Inheritance graph
[legend]
Collaboration diagram for inlib::wroot::streamer_object:
Collaboration graph
[legend]

List of all members.

Public Member Functions

virtual const std::string & store_cls () const
virtual bool stream (buffer &aBuffer) const
virtual streamer_elementcopy () const
 streamer_object (const std::string &aName, const std::string &aTitle, int aOffset, const std::string &aTypeName)
virtual ~streamer_object ()
 streamer_object (const streamer_object &a_from)
streamer_objectoperator= (const streamer_object &a_from)

Detailed Description

Definition at line 321 of file element.


Constructor & Destructor Documentation

inlib::wroot::streamer_object::streamer_object ( const std::string &  aName,
const std::string &  aTitle,
int  aOffset,
const std::string &  aTypeName 
) [inline]

Definition at line 339 of file element.

  :streamer_element(aName,aTitle,aOffset,0,aTypeName){
    fType = streamer_info::OBJECT;
    if (aName=="TObject") fType = streamer_info::TOBJECT;
    if (aName=="TNamed") fType = streamer_info::TNAMED;
  }
virtual inlib::wroot::streamer_object::~streamer_object ( ) [inline, virtual]

Definition at line 346 of file element.

{}
inlib::wroot::streamer_object::streamer_object ( const streamer_object a_from) [inline]

Definition at line 348 of file element.

  :ibo(a_from),streamer_element(a_from){}

Member Function Documentation

virtual streamer_element* inlib::wroot::streamer_object::copy ( ) const [inline, virtual]

Implements inlib::wroot::streamer_element.

Definition at line 335 of file element.

                                         {
    return new streamer_object(*this);
  }
streamer_object& inlib::wroot::streamer_object::operator= ( const streamer_object a_from) [inline]

Definition at line 350 of file element.

                                                           {
    streamer_element::operator=(a_from);
    return *this;
  }
virtual const std::string& inlib::wroot::streamer_object::store_cls ( ) const [inline, virtual]

Reimplemented from inlib::wroot::streamer_element.

Definition at line 323 of file element.

                                             {
    static const std::string s_v("TStreamerObject");
    return s_v;
  }
virtual bool inlib::wroot::streamer_object::stream ( buffer aBuffer) const [inline, virtual]

Reimplemented from inlib::wroot::streamer_element.

Definition at line 327 of file element.

                                             {
    unsigned int c;
    if(!aBuffer.write_version(2,c)) return false;
    if(!streamer_element::stream(aBuffer)) return false;
    if(!aBuffer.set_byte_count(c)) return false;
    return true;
  }

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines