diff options
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/FinderDef_i.h')
-rw-r--r-- | TAO/orbsvcs/IFR_Service/FinderDef_i.h | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/TAO/orbsvcs/IFR_Service/FinderDef_i.h b/TAO/orbsvcs/IFR_Service/FinderDef_i.h new file mode 100644 index 00000000000..b52b224bcb1 --- /dev/null +++ b/TAO/orbsvcs/IFR_Service/FinderDef_i.h @@ -0,0 +1,81 @@ +/* -*- C++ -*- */ +// $Id$ + +// ============================================================================ +// +// = LIBRARY +// TAO/orbsvcs/IFR_Service +// +// = FILENAME +// FinderDef_i.h +// +// = DESCRIPTION +// IR::FinderDef servant class. +// +// = AUTHOR +// Jeff Parsons <parsons@cs.wustl.edu> +// +// ============================================================================ + +#ifndef TAO_FINDERDEF_I_H +#define TAO_FINDERDEF_I_H + +#include "OperationDef_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_FinderDef_i : public virtual TAO_OperationDef_i +{ + // = TITLE + // TAO_FinderDef_i + // + // = DESCRIPTION + // Represents the definition of a finder operation in a home. + // +public: + TAO_FinderDef_i (TAO_Repository_i *repo, + ACE_Configuration_Section_Key section_key); + // Constructor + + virtual ~TAO_FinderDef_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 void destroy ( + CORBA::Environment &ACE_TRY_ENV = + TAO_default_environment () + ) + ACE_THROW_SPEC ((CORBA::SystemException)); + // Remove the repository entry. + + virtual IR::Contained::Description *describe ( + CORBA::Environment &ACE_TRY_ENV = + TAO_default_environment () + ) + ACE_THROW_SPEC ((CORBA::SystemException)); + // From Contained_i's pure virtual function. +}; + +#if defined(_MSC_VER) && (_MSC_VER >= 1200) +#pragma warning(pop) +#endif /* _MSC_VER */ + +#endif /* TAO_FINDERDEF_I_H */ + + + |