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

Detailed Description

Definition at line 200 of file element.


Constructor & Destructor Documentation

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

Definition at line 218 of file element.

  :streamer_element(aName,aTitle,aOffset,aType,aTypeName)
  {}
virtual inlib::wroot::streamer_basic_type::~streamer_basic_type ( ) [inline, virtual]

Definition at line 222 of file element.

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

Definition at line 224 of file element.

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

Member Function Documentation

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

Implements inlib::wroot::streamer_element.

Definition at line 214 of file element.

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

Definition at line 227 of file element.

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

Reimplemented from inlib::wroot::streamer_element.

Definition at line 202 of file element.

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

Reimplemented from inlib::wroot::streamer_element.

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