// -*- C++ -*- // $Id$ // ============================================================================ // // = LIBRARY // TAO/orbsvcs/orbsvcs/IFRService // // = FILENAME // ComponentModuleDef_i.h // // = DESCRIPTION // ComponentModuleDef_i servant class. // // = AUTHOR // Jeff Parsons // // ============================================================================ #ifndef TAO_COMPONENTMODULEDEF_I_H #define TAO_COMPONENTMODULEDEF_I_H #include "orbsvcs/IFRService/ComponentContainer_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_ComponentModuleDef_i : public virtual TAO_ComponentContainer_i { // = TITLE // TAO_ComponentModuleDef_i // // = DESCRIPTION // Represents a module definition that may contain Component-related // types. // public: TAO_ComponentModuleDef_i (TAO_Repository_i *repo); // Constructor virtual ~TAO_ComponentModuleDef_i (void); // Destructor }; TAO_END_VERSIONED_NAMESPACE_DECL #if defined(_MSC_VER) #pragma warning(pop) #endif /* _MSC_VER */ #endif /* TAO_MODULEDEF_I_H */