inlib  1.2.0
Public Member Functions
inlib::sg::sf< T > Class Template Reference
Inheritance diagram for inlib::sg::sf< T >:
Inheritance graph
[legend]
Collaboration diagram for inlib::sg::sf< T >:
Collaboration graph
[legend]

List of all members.

Public Member Functions

virtual bool write (io::iwbuf &a_buffer)
virtual bool read (io::irbuf &a_buffer)
virtual bool dump (std::ostream &a_out)
 sf ()
 sf (const T &a_value)
 sf (const sf &a_from)
sfoperator= (const sf &a_from)
sfoperator= (const T &a_value)

Detailed Description

template<class T>
class inlib::sg::sf< T >

Definition at line 113 of file sf.


Constructor & Destructor Documentation

template<class T>
inlib::sg::sf< T >::sf ( ) [inline]

Definition at line 126 of file sf.

{}
template<class T>
inlib::sg::sf< T >::sf ( const T &  a_value) [inline]

Definition at line 127 of file sf.

: bsf<T>(a_value){}
template<class T>
inlib::sg::sf< T >::sf ( const sf< T > &  a_from) [inline]

Definition at line 129 of file sf.

  : bsf<T>(a_from)
  {}

Member Function Documentation

template<class T>
virtual bool inlib::sg::sf< T >::dump ( std::ostream &  a_out) [inline, virtual]

Implements inlib::sg::field.

Definition at line 121 of file sf.

                                       {
    a_out << bsf<T>::m_value << std::endl;
    return true;
  }
template<class T>
sf& inlib::sg::sf< T >::operator= ( const sf< T > &  a_from) [inline]

Definition at line 132 of file sf.

                                 {
    bsf<T>::operator=(a_from);
    return *this;
  }
template<class T>
sf& inlib::sg::sf< T >::operator= ( const T &  a_value) [inline]

Reimplemented from inlib::sg::bsf< T >.

Definition at line 137 of file sf.

                                 {
    bsf<T>::operator=(a_value);
    return *this;
  }
template<class T>
virtual bool inlib::sg::sf< T >::read ( io::irbuf a_buffer) [inline, virtual]

Implements inlib::sg::field.

Definition at line 118 of file sf.

                                       {
    return a_buffer.read(bsf<T>::m_value);
  }
template<class T>
virtual bool inlib::sg::sf< T >::write ( io::iwbuf a_buffer) [inline, virtual]

Implements inlib::sg::field.

Definition at line 115 of file sf.

                                        {
    return a_buffer.write(bsf<T>::m_value);
  }

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