summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/EnumDef_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/EnumDef_i.h')
-rw-r--r--TAO/orbsvcs/IFR_Service/EnumDef_i.h106
1 files changed, 0 insertions, 106 deletions
diff --git a/TAO/orbsvcs/IFR_Service/EnumDef_i.h b/TAO/orbsvcs/IFR_Service/EnumDef_i.h
deleted file mode 100644
index 762beebc320..00000000000
--- a/TAO/orbsvcs/IFR_Service/EnumDef_i.h
+++ /dev/null
@@ -1,106 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/orbsvcs/IFR_Service
-//
-// = FILENAME
-// EnumDef_i.h
-//
-// = DESCRIPTION
-// IR::EnumDef servant class.
-//
-// = AUTHOR
-// Jeff Parsons <parsons@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef TAO_ENUMDEF_I_H
-#define TAO_ENUMDEF_I_H
-
-#include "TypedefDef_i.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#if defined(_MSC_VER)
-#if (_MSC_VER >= 1200)
-#pragma warning(push)
-#endif /* _MSC_VER >= 1200 */
-#pragma warning(disable:4250)
-#endif /* _MSC_VER */
-
-class TAO_EnumDef_i : public virtual TAO_TypedefDef_i
-{
-public:
- // = TITLE
- // TAO_EnumDef_i
- //
- // = DESCRIPTION
- // Represents an OMG IDL enumeration definition.
- //
-public:
- TAO_EnumDef_i (TAO_Repository_i *repo,
- ACE_Configuration_Section_Key section_key);
- // Constructor
-
- virtual ~TAO_EnumDef_i (void);
- // Destructor
-
- virtual IR::DefinitionKind def_kind (
- CORBA::Environment &ACE_TRY_ENV =
- TAO_default_environment ()
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Return our definition kind.
-
- virtual CORBA::TypeCode_ptr type (
- CORBA::Environment &ACE_TRY_ENV =
- TAO_default_environment ()
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
- // From IDLType_i's pure virtual function.
-
- virtual CORBA::TypeCode_ptr type_i (
- CORBA::Environment &ACE_TRY_ENV =
- TAO_default_environment ()
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
- // From IDLType_i's pure virtual function.
-
- virtual IR::EnumMemberSeq *members (
- CORBA::Environment &ACE_TRY_ENV =
- TAO_default_environment ()
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- IR::EnumMemberSeq *members_i (
- CORBA::Environment &ACE_TRY_ENV =
- TAO_default_environment ()
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- virtual void members (
- const IR::EnumMemberSeq &members,
- CORBA::Environment &ACE_TRY_ENV =
- TAO_default_environment ()
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void members_i (
- const IR::EnumMemberSeq &members,
- CORBA::Environment &ACE_TRY_ENV =
- TAO_default_environment ()
- )
- ACE_THROW_SPEC ((CORBA::SystemException));
-};
-
-#if defined(_MSC_VER) && (_MSC_VER >= 1200)
-#pragma warning(pop)
-#endif /* _MSC_VER */
-
-#endif /* TAO_ENUMDEF_I_H */
-