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