summaryrefslogtreecommitdiff
path: root/TAO/tao/TypeCode/Local_Interface_TypeCode.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/TypeCode/Local_Interface_TypeCode.h')
-rw-r--r--TAO/tao/TypeCode/Local_Interface_TypeCode.h85
1 files changed, 0 insertions, 85 deletions
diff --git a/TAO/tao/TypeCode/Local_Interface_TypeCode.h b/TAO/tao/TypeCode/Local_Interface_TypeCode.h
deleted file mode 100644
index 6af449f89ed..00000000000
--- a/TAO/tao/TypeCode/Local_Interface_TypeCode.h
+++ /dev/null
@@ -1,85 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Local_Interface_TypeCode.h
- *
- * $Id$
- *
- * Header file for a @c tk_local_interface CORBA::TypeCode.
- *
- * @author Ossama Othman <ossama@dre.vanderbilt.edu>
- */
-//=============================================================================
-
-#ifndef TAO_LOCAL_INTERFACE_TYPECODE_H
-#define TAO_LOCAL_INTERFACE_TYPECODE_H
-
-#include /**/ "ace/pre.h"
-
-#include "tao/Objref_TypeCode.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-
-namespace TAO
-{
- namespace TypeCode
- {
-
- /**
- * @class Local_Interface
- *
- * @brief @c CORBA::TypeCode implementation for an OMG IDL
- * @c local_interface type.
- *
- * This class implements a @c CORBA::TypeCode for an OMG IDL
- * @c local_interface type.
- */
- template <typename StringType, class RefCountPolicy>
- class Local_Interface
- : public Objref<StringType, RefCountPolicy>
- {
- public:
-
- /// Constructor.
- Local_Interface (char const * id,
- char const * name);
-
- protected:
-
- /**
- * @name @c TAO CORBA::TypeCode Template Methods
- *
- * @c tk_local_interface @c CORBA::TypeCode -specific template methods.
- *
- * @see @c CORBA::TypeCode
- */
- //@{
- virtual CORBA::TCKind kind_i (ACE_ENV_SINGLE_ARG_DECL) const;
- virtual CORBA::TypeCode_ptr get_compact_typecode_i (
- ACE_ENV_SINGLE_ARG_DECL) const;
-
- };
-
- } // End namespace TypeCode
-} // End namespace TAO
-
-
-#ifdef __ACE_INLINE__
-# include "tao/Local_Interface_TypeCode.inl"
-#endif /* __ACE_INLINE__ */
-
-#ifdef ACE_TEMPLATES_REQUIRE_SOURCE
-# include "tao/Local_Interface_TypeCode.cpp"
-#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
-
-#ifdef ACE_TEMPLATES_REQUIRE_PRAGMA
-# pragma implementation ("Local_Interface_TypeCode.cpp")
-#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_LOCAL_INTERFACE_TYPECODE_H */