blob: 8bbc1eaffbb074f6ece5b785e49ebd774cc1a07a (
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-2017 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 ();
}
}
|