summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticGraph/Translation.ipp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/SemanticGraph/Translation.ipp')
-rw-r--r--CIAO/CCF/CCF/IDL2/SemanticGraph/Translation.ipp73
1 files changed, 0 insertions, 73 deletions
diff --git a/CIAO/CCF/CCF/IDL2/SemanticGraph/Translation.ipp b/CIAO/CCF/CCF/IDL2/SemanticGraph/Translation.ipp
deleted file mode 100644
index 8168cd87762..00000000000
--- a/CIAO/CCF/CCF/IDL2/SemanticGraph/Translation.ipp
+++ /dev/null
@@ -1,73 +0,0 @@
-// file : CCF/IDL2/SemanticGraph/Translation.ipp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticGraph
- {
- // ContainsPrincipal
- //
- //
- inline void ContainsPrincipal::
- set_left_node (TranslationUnit& n)
- {
- Contains::set_left_node (n);
- }
-
- inline void ContainsPrincipal::
- set_right_node (TranslationRegion& n)
- {
- Contains::set_right_node (n);
- }
-
- // ContainsImplied
- //
- //
- inline void ContainsImplied::
- set_left_node (TranslationUnit& n)
- {
- Contains::set_left_node (n);
- }
-
- inline void ContainsImplied::
- set_right_node (TranslationRegion& n)
- {
- Contains::set_right_node (n);
- }
-
- // ContainsRoot
- //
- //
- inline void ContainsRoot::
- set_left_node (TranslationRegion& n)
- {
- Contains::set_left_node (n);
- }
-
- inline void ContainsRoot::
- set_right_node (Root& n)
- {
- Contains::set_right_node (n);
- }
-
-
- // Includes
- //
- //
- inline void Includes::
- set_left_node (TranslationRegion& n)
- {
- Contains::set_left_node (n);
- }
-
- inline void Includes::
- set_right_node (TranslationRegion& n)
- {
- Contains::set_right_node (n);
- }
- }
- }
-}