aboutsummaryrefslogtreecommitdiff
path: root/libstudxml/qname.cxx
blob: 3049344d16e1fb389fc79a17a70c3405b25aef47 (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      : libstudxml/qname.cxx
// copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <ostream>

#include <libstudxml/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 ();
  }
}