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