blob: c900efc4aa46aa4651b0f973f04336d6e853a55c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// file : xml/qname.cxx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <ostream>
#include <xml/qname.hxx>
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 ();
}
}
|