// file : xsde/cxx/parser/non-validating/name-stl.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #include #include namespace xsde { namespace cxx { namespace parser { namespace non_validating { void name_pimpl:: _pre () { str_.erase (); } void name_pimpl:: _characters (const ro_string& s) { if (str_.size () == 0) { ro_string tmp (s.data (), s.size ()); if (trim_left (tmp) != 0) str_ += tmp; } else str_ += s; } std::string name_pimpl:: post_name () { string_common::process_facets (str_, _facets ()); std::string r; r.swap (str_); return r; } } } } }