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.hxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/odb/traversal/class.hxx b/odb/traversal/class.hxx
deleted file mode 100644
index de86cc0..0000000
--- a/odb/traversal/class.hxx
+++ /dev/null
@@ -1,40 +0,0 @@
-// file : odb/traversal/class.hxx
-// 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