inlib  1.2.0
Public Member Functions
inlib::wroot::streamer_object_pointer Class Reference
Inheritance diagram for inlib::wroot::streamer_object_pointer:
Inheritance graph
[legend]
Collaboration diagram for inlib::wroot::streamer_object_pointer:
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_pointer (const std::string &aName, const std::string &aTitle, int aOffset, const std::string &aTypeName)
virtual ~streamer_object_pointer ()
 streamer_object_pointer (const streamer_object_pointer &a_from)
streamer_object_pointeroperator= (const streamer_object_pointer &a_from)

Detailed Description

Definition at line 356 of file element.


Constructor & Destructor Documentation

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

Definition at line 374 of file element.

  :streamer_element(aName,aTitle,aOffset,
                   streamer_info::OBJECT_POINTER,aTypeName){
    if(aTitle.substr(0,2)=="->") fType = streamer_info::OBJECT_ARROW;
  }
virtual inlib::wroot::streamer_object_pointer::~streamer_object_pointer ( ) [inline, virtual]

Definition at line 380 of file element.

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

Definition at line 382 of file element.

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

Member Function Documentation

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

Implements inlib::wroot::streamer_element.

Definition at line 370 of file element.

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

Definition at line 384 of file element.

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

Reimplemented from inlib::wroot::streamer_element.

Definition at line 358 of file element.

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

Reimplemented from inlib::wroot::streamer_element.

Definition at line 362 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