summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.hpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.hpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.hpp b/CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.hpp
deleted file mode 100644
index 712cdf1ca8a..00000000000
--- a/CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.hpp
+++ /dev/null
@@ -1,51 +0,0 @@
-// file : CCF/IDL2/SemanticGraph/Exception.hpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef CCF_IDL2_SEMANTIC_GRAPH_EXCEPTION_HPP
-#define CCF_IDL2_SEMANTIC_GRAPH_EXCEPTION_HPP
-
-#include "CCF/IDL2/SemanticGraph/Elements.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticGraph
- {
- class Raises;
-
- class Exception : public virtual Type, public virtual Scope
- {
- public:
- virtual bool
- complete () const
- {
- return defined ();
- }
-
- static Introspection::TypeInfo const&
- static_type_info ();
-
- protected:
- friend class Graph<Node, Edge>;
-
- Exception (Path const& path, unsigned long line)
- : Node (path, line)
- {
- type_info (static_type_info ());
- }
-
- using Type::add_edge_right;
- using Scope::add_edge_left;
-
- void
- add_edge_right (Raises&)
- {
- }
- };
- }
- }
-}
-
-#endif // CCF_IDL2_SEMANTIC_GRAPH_EXCEPTION_HPP