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