// file : xsde/cxx/serializer/validating/boolean.cxx // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #include namespace xsde { namespace cxx { namespace serializer { namespace validating { void boolean_simpl:: pre (bool value) { value_ = value; } void boolean_simpl:: _serialize_content () { _characters ((value_ ? "true" : "false"), (value_ ? 4 : 5)); } } } } }