// -*- C++ -*- // $Id$ // ============================================================================ // // = LIBRARY // TAO/orbsvcs/orbsvcs/IFRService // // = FILENAME // EmitsDef_i.h // // = DESCRIPTION // EmitsDef servant class. // // = AUTHOR // Jeff Parsons // // ============================================================================ #ifndef TAO_EMITSDEF_I_H #define TAO_EMITSDEF_I_H #include "orbsvcs/IFRService/EventPortDef_i.h" #include "orbsvcs/IFRService/ifr_service_export.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable:4250) #endif /* _MSC_VER */ TAO_BEGIN_VERSIONED_NAMESPACE_DECL class TAO_IFRService_Export TAO_EmitsDef_i : public virtual TAO_EventPortDef_i { // = TITLE // TAO_EmitsDef_i // // = DESCRIPTION // Represents the definition of an event that is emitted // by a component. // public: TAO_EmitsDef_i (TAO_Repository_i *repo); // Constructor virtual ~TAO_EmitsDef_i (void); // Destructor virtual CORBA::DefinitionKind def_kind ( ) ACE_THROW_SPEC ((CORBA::SystemException)); // Return our definition kind. }; TAO_END_VERSIONED_NAMESPACE_DECL #if defined(_MSC_VER) #pragma warning(pop) #endif /* _MSC_VER */ #endif /* TAO_EMITSDEF_I_H */