1234567891011121314151617181920212223242526272829303132 |
- // file : xml/qname.cxx
- // copyright : Copyright (c) 2013-2014 Code Synthesis Tools CC
- // license : MIT; see accompanying LICENSE file
- #include <ostream>
- #include <xml/qname>
- using namespace std;
- namespace xml
- {
- string qname::
- string () const
- {
- std::string r;
- if (!ns_.empty ())
- {
- r += ns_;
- r += '#';
- }
- r += name_;
- return r;
- }
- ostream&
- operator<< (ostream& os, const qname& qn)
- {
- return os << qn.string ();
- }
- }
|