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