summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.cpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.cpp b/CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.cpp
deleted file mode 100644
index 9ed3a7e494b..00000000000
--- a/CIAO/CCF/CCF/IDL2/SemanticGraph/Exception.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-// file : CCF/IDL2/SemanticGraph/Exception.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "CCF/IDL2/SemanticGraph/Exception.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticGraph
- {
- using Introspection::TypeInfo;
- using Introspection::Access;
-
- namespace
- {
- TypeInfo
- exception_init_ ()
- {
- TypeInfo ti (typeid (Exception));
- ti.add_base (Access::PUBLIC, true, Type::static_type_info ());
- ti.add_base (Access::PUBLIC, true, Scope::static_type_info ());
- return ti;
- }
-
- TypeInfo exception_ (exception_init_ ());
- }
-
- TypeInfo const& Exception::
- static_type_info () { return exception_; }
- }
- }
-}