// file : xsde/cxx/serializer/validating/ncname.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #include // strlen #include #include namespace xsde { namespace cxx { namespace serializer { namespace validating { ncname_simpl:: ~ncname_simpl () { if (free_) delete[] const_cast (value_); } void ncname_simpl:: pre (const char* value) { value_ = value; } void ncname_simpl:: _serialize_content () { size_t n = strlen (value_); if (xml::valid_ncname (value_, n)) _characters (value_, n); else _schema_error (schema_error::invalid_ncname_value); if (free_) { delete[] const_cast (value_); value_ = 0; } } } } } }