#include <simpletype.h>
Inheritance diagram for aka2::simpletype< V, L >:
Static Public Methods | |
void | write_text (const void *elm, std::ostream &ostm, entity_complements &ecomp) |
void | read_text (void *elm, const std::string &entity, entity_complements &ecomp) |
Leaf classes for simpleTypes are derived from this template class.
T | value class type |
L | leaf class type |
Definition at line 89 of file simpletype.h.
|
read element value from aka2::isstream. Cast elm to V&, and users get variable to set read value. preconditionals will provide conditionals. If user need custom-writing logic, override this method.
Definition at line 128 of file simpletype.h. |
|
write element value to std::ostream Cast elm to const V&, and users get variable to write to std::ostream. preconditionals will provide conditionals. If user need custom-writing logic, override this method.
Definition at line 111 of file simpletype.h. |