summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/Traversal/Union.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/Traversal/Union.cpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/Traversal/Union.cpp81
1 files changed, 0 insertions, 81 deletions
diff --git a/CIAO/CCF/CCF/IDL2/Traversal/Union.cpp b/CIAO/CCF/CCF/IDL2/Traversal/Union.cpp
deleted file mode 100644
index b14f518983e..00000000000
--- a/CIAO/CCF/CCF/IDL2/Traversal/Union.cpp
+++ /dev/null
@@ -1,81 +0,0 @@
-// file : CCF/IDL2/Traversal/Union.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "CCF/IDL2/Traversal/Union.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace Traversal
- {
- // UnionMember
- //
- //
- void UnionMember::
- traverse (Type& m)
- {
- pre (m);
- belongs (m);
- name (m);
- post (m);
- }
-
- void UnionMember::
- pre (Type&)
- {
- }
-
- void UnionMember::
- belongs (Type& m, EdgeDispatcherBase& d)
- {
- d.traverse (m.belongs ());
- }
-
- void UnionMember::
- belongs (Type& m)
- {
- belongs (m, edge_traverser ());
- }
-
- void UnionMember::
- name (Type&)
- {
- }
-
- void UnionMember::
- post (Type&)
- {
- }
-
-
- // Union
- //
- //
- void Union::
- traverse (Type& s)
- {
- pre (s);
- name (s);
- names (s);
- post (s);
- }
-
- void Union::
- pre (Type&)
- {
- }
-
- void Union::
- name (Type&)
- {
- }
-
- void Union::
- post (Type&)
- {
- }
- }
- }
-}