blob: de24e5788e07528e6c892e4ee6e48997bc85a505 (
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) 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 ();
}
}
|