summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-08 21:54:28 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-08 21:54:28 +0100
commit2115170a6f8c3fa0cec8c15fc3f3b81282a6e87f (patch)
tree1e1f86eab89745410ce1d4c218bc00ef2e475ba4 /src
parentee5d2c8c1d4e79fdb470687b020a5acb234e9024 (diff)
Remove unused stuff.
Diffstat (limited to 'src')
-rw-r--r--src/xml.h95
1 files changed, 0 insertions, 95 deletions
diff --git a/src/xml.h b/src/xml.h
deleted file mode 100644
index bf1477b..0000000
--- a/src/xml.h
+++ /dev/null
@@ -1,95 +0,0 @@
-/*
- Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
-
-/** @file src/xml.h
- * @brief Some useful XML helper functions.
- */
-
-#ifndef LIBSUB_XML_H
-#define LIBSUB_XML_H
-
-#include "exceptions.h"
-#include <libcxml/cxml.h>
-
-namespace sub
-{
-
-template <class T>
-std::shared_ptr<T>
-optional_type_child (cxml::Node const & node, std::string name)
-{
- std::list<std::shared_ptr<cxml::Node> > n = node.node_children (name);
- if (n.size() > 1) {
- throw XMLError ("duplicate XML tag");
- } else if (n.empty ()) {
- return std::shared_ptr<T> ();
- }
-
- return std::shared_ptr<T> (new T (n.front ()));
-}
-
-template <class T>
-std::shared_ptr<T> type_child (std::shared_ptr<const cxml::Node> node, std::string name) {
- return std::shared_ptr<T> (new T (node->node_child (name)));
-}
-
-template <class T>
-std::shared_ptr<T>
-optional_type_child (std::shared_ptr<const cxml::Node> node, std::string name)
-{
- return optional_type_child<T> (*node.get(), name);
-}
-
-template <class T>
-std::list<std::shared_ptr<T> >
-type_children (cxml::Node const & node, std::string name)
-{
- std::list<std::shared_ptr<cxml::Node> > n = node.node_children (name);
- std::list<std::shared_ptr<T> > r;
- for (typename std::list<std::shared_ptr<cxml::Node> >::iterator i = n.begin(); i != n.end(); ++i) {
- r.push_back (std::shared_ptr<T> (new T (*i)));
- }
- return r;
-}
-
-template <class T>
-std::list<std::shared_ptr<T> >
-type_children (std::shared_ptr<const cxml::Node> node, std::string name)
-{
- return type_children<T> (*node.get(), name);
-}
-
-template <class T>
-std::list<std::shared_ptr<T> >
-type_grand_children (cxml::Node const & node, std::string name, std::string sub)
-{
- std::shared_ptr<const cxml::Node> p = node.node_child (name);
- return type_children<T> (p, sub);
-}
-
-template <class T>
-std::list<std::shared_ptr<T> >
-type_grand_children (std::shared_ptr<const cxml::Node> node, std::string name, std::string sub)
-{
- return type_grand_children<T> (*node.get(), name, sub);
-}
-
-}
-
-#endif