summaryrefslogtreecommitdiff
path: root/odb/traversal/class.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/traversal/class.cxx')
-rw-r--r--odb/traversal/class.cxx35
1 files changed, 0 insertions, 35 deletions
diff --git a/odb/traversal/class.cxx b/odb/traversal/class.cxx
deleted file mode 100644
index 766e91a..0000000
--- a/odb/traversal/class.cxx
+++ /dev/null
@@ -1,35 +0,0 @@
-// file : odb/traversal/class.cxx
-// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
-// license : GNU GPL v3; see accompanying LICENSE file
-
-#include <odb/traversal/class.hxx>
-
-namespace traversal
-{
- void inherits::
- traverse (type& i)
- {
- dispatch (i.base ());
- }
-
- //
- //
- void class_::
- traverse (type& c)
- {
- inherits (c);
- names (c);
- }
-
- void class_::
- inherits (type& c)
- {
- inherits (c, *this);
- }
-
- void class_::
- inherits (type& c, edge_dispatcher& d)
- {
- iterate_and_dispatch (c.inherits_begin (), c.inherits_end (), d);
- }
-}