summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/CIDL/SemanticGraph/Composition.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CCF/CCF/CIDL/SemanticGraph/Composition.hpp')
-rw-r--r--TAO/CIAO/CCF/CCF/CIDL/SemanticGraph/Composition.hpp96
1 files changed, 0 insertions, 96 deletions
diff --git a/TAO/CIAO/CCF/CCF/CIDL/SemanticGraph/Composition.hpp b/TAO/CIAO/CCF/CCF/CIDL/SemanticGraph/Composition.hpp
deleted file mode 100644
index 62b1e3afa7f..00000000000
--- a/TAO/CIAO/CCF/CCF/CIDL/SemanticGraph/Composition.hpp
+++ /dev/null
@@ -1,96 +0,0 @@
-// file : CCF/CIDL/SemanticGraph/Composition.hpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef CCF_CIDL_SEMANTIC_GRAPH_COMPOSITION_HPP
-#define CCF_CIDL_SEMANTIC_GRAPH_COMPOSITION_HPP
-
-#include "CCF/CIDL/SemanticGraph/Elements.hpp"
-
-namespace CCF
-{
- namespace CIDL
- {
- namespace SemanticGraph
- {
- class Composition : public virtual Scope
- {
- public:
- static Introspection::TypeInfo const&
- static_type_info ();
-
- protected:
- friend class Graph<Node, Edge>;
-
- Composition ()
- {
- type_info (static_type_info ());
- }
- };
-
- class EntityComposition : public virtual Composition
- {
- public:
- static Introspection::TypeInfo const&
- static_type_info ();
-
- protected:
- friend class Graph<Node, Edge>;
-
- EntityComposition ()
- {
- type_info (static_type_info ());
- }
- };
-
- class ProcessComposition : public virtual Composition
- {
- public:
- static Introspection::TypeInfo const&
- static_type_info ();
-
- protected:
- friend class Graph<Node, Edge>;
-
- ProcessComposition ()
- {
- type_info (static_type_info ());
- }
- };
-
-
- class ServiceComposition : public virtual Composition
- {
- public:
- static Introspection::TypeInfo const&
- static_type_info ();
-
- protected:
- friend class Graph<Node, Edge>;
-
- ServiceComposition ()
- {
- type_info (static_type_info ());
- }
- };
-
-
- class SessionComposition : public virtual Composition
- {
- public:
- static Introspection::TypeInfo const&
- static_type_info ();
-
- protected:
- friend class Graph<Node, Edge>;
-
- SessionComposition ()
- {
- type_info (static_type_info ());
- }
- };
- }
- }
-}
-
-#endif // CCF_CIDL_SEMANTIC_GRAPH_COMPOSITION_HPP