|
virtual void * | cast (const std::string &a_class) const |
|
Definition at line 130 of file osc_streamers.
◆ Item() [1/3]
tools::osc::Item::Item |
( |
| ) |
|
|
inline |
◆ Item() [2/3]
tools::osc::Item::Item |
( |
const std::string & |
aKey, |
|
|
const std::string & |
aValue, |
|
|
bool |
aSticky |
|
) |
| |
|
inline |
◆ ~Item()
virtual tools::osc::Item::~Item |
( |
| ) |
|
|
inlinevirtual |
◆ Item() [3/3]
tools::osc::Item::Item |
( |
const Item & |
a_from | ) |
|
|
inline |
◆ cast()
virtual void* tools::osc::Item::cast |
( |
const std::string & |
a_class | ) |
const |
|
inlineprotectedvirtual |
◆ operator=()
Item& tools::osc::Item::operator= |
( |
const Item & |
a_from | ) |
|
|
inline |
Definition at line 184 of file osc_streamers.
185 if(&a_from==
this)
return *
this;
◆ read()
virtual bool tools::osc::Item::read |
( |
iobj_visitor & |
a_visitor | ) |
|
|
inlinevirtual |
Definition at line 159 of file osc_streamers.
163 if(!a_visitor.visit(
version))
return false;
165 if(!a_visitor.visit(
fKey))
return false;
166 if(!a_visitor.visit(
fValue))
return false;
167 if(!a_visitor.visit(
fSticky))
return false;
◆ s_visit()
Definition at line 153 of file osc_streamers.
154 const Item* local = safe_cast<istorable,Item>(a_o);
155 if(!local)
return false;
156 return local->Item::visit(a_v);
◆ store_cls()
virtual const std::string& tools::osc::Item::store_cls |
( |
| ) |
const |
|
inlinevirtual |
◆ visit()
Implements tools::istorable.
Definition at line 140 of file osc_streamers.
144 if(!a_visitor.visit(
"fVersion",
version))
return false;
146 if(!a_visitor.visit(
"fKey",
fKey))
return false;
147 if(!a_visitor.visit(
"fValue",
fValue))
return false;
148 if(!a_visitor.visit(
"fSticky",
fSticky))
return false;
150 if(!a_visitor.end(*
this))
return false;
◆ fKey
std::string tools::osc::Item::fKey |
◆ fSticky
bool tools::osc::Item::fSticky |
◆ fValue
std::string tools::osc::Item::fValue |
The documentation for this class was generated from the following file:
- /Users/barrand/private/dev/softinex/g4tools/g4tools/tools/store/osc_streamers