summaryrefslogtreecommitdiff
path: root/odb/traversal/template.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/traversal/template.hxx')
-rw-r--r--odb/traversal/template.hxx57
1 files changed, 0 insertions, 57 deletions
diff --git a/odb/traversal/template.hxx b/odb/traversal/template.hxx
deleted file mode 100644
index afec6d8..0000000
--- a/odb/traversal/template.hxx
+++ /dev/null
@@ -1,57 +0,0 @@
-// file : odb/traversal/template.hxx
-// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
-// license : GNU GPL v3; see accompanying LICENSE file
-
-#ifndef ODB_TRAVERSAL_TEMPLATE_HXX
-#define ODB_TRAVERSAL_TEMPLATE_HXX
-
-#include <odb/semantics/template.hxx>
-#include <odb/traversal/elements.hxx>
-
-namespace traversal
-{
- struct instantiates: edge<semantics::instantiates>
- {
- instantiates ()
- {
- }
-
- instantiates (node_dispatcher& n)
- {
- node_traverser (n);
- }
-
- virtual void
- traverse (type&);
- };
-
- struct template_: node<semantics::template_> {};
-
- struct instantiation: node<semantics::instantiation>
- {
- virtual void
- traverse (type&);
-
- virtual void
- instantiates (type&);
-
- virtual void
- instantiates (type&, edge_dispatcher&);
- };
-
- struct type_template: node<semantics::type_template> {};
-
- struct type_instantiation: node<semantics::type_instantiation>
- {
- virtual void
- traverse (type&);
-
- virtual void
- instantiates (type&);
-
- virtual void
- instantiates (type&, edge_dispatcher&);
- };
-}
-
-#endif // ODB_TRAVERSAL_TEMPLATE_HXX