|
inlib
1.2.0
|


Public Member Functions | |
| virtual bool | write (io::iwbuf &a_buffer) |
| virtual bool | read (io::irbuf &a_buffer) |
| virtual bool | dump (std::ostream &) |
| sf_string () | |
| sf_string (const std::string &a_value) | |
| virtual | ~sf_string () |
| sf_string (const sf_string &a_from) | |
| sf_string & | operator= (const sf_string &a_from) |
| sf_string & | operator= (const std::string &a_value) |
| inlib::sg::sf_string::sf_string | ( | ) | [inline] |
| inlib::sg::sf_string::sf_string | ( | const std::string & | a_value | ) | [inline] |
| virtual inlib::sg::sf_string::~sf_string | ( | ) | [inline, virtual] |
| inlib::sg::sf_string::sf_string | ( | const sf_string & | a_from | ) | [inline] |
| virtual bool inlib::sg::sf_string::dump | ( | std::ostream & | ) | [inline, virtual] |
Implements inlib::sg::field.
Definition at line 97 of file sfs.
{
//a_out << bsf<T>::m_value << std::endl;
return true;
}
Definition at line 107 of file sfs.
{
bsf<std::string>::operator=(a_from);
return *this;
}
| sf_string& inlib::sg::sf_string::operator= | ( | const std::string & | a_value | ) | [inline] |
Reimplemented from inlib::sg::bsf< std::string >.
Definition at line 112 of file sfs.
{
bsf<std::string>::operator=(a_value);
return *this;
}
| virtual bool inlib::sg::sf_string::read | ( | io::irbuf & | a_buffer | ) | [inline, virtual] |
Implements inlib::sg::field.
| virtual bool inlib::sg::sf_string::write | ( | io::iwbuf & | a_buffer | ) | [inline, virtual] |
Implements inlib::sg::field.
Definition at line 87 of file sfs.
{
return a_buffer.write_cstr(m_value.c_str());
}
1.7.5.1