From 8e761289a2446367267c6c0d9a26e734f0f78306 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 16 Dec 2020 20:29:05 +0300 Subject: Get rid of legacy build systems and rename cutl/ to libcutl/ --- cutl/xml/qname.cxx | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 cutl/xml/qname.cxx (limited to 'cutl/xml/qname.cxx') diff --git a/cutl/xml/qname.cxx b/cutl/xml/qname.cxx deleted file mode 100644 index 968e7df..0000000 --- a/cutl/xml/qname.cxx +++ /dev/null @@ -1,34 +0,0 @@ -// file : cutl/xml/qname.cxx -// license : MIT; see accompanying LICENSE file - -#include - -#include - -using namespace std; - -namespace cutl -{ - 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 (); - } - } -} -- cgit v1.1