summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.h')
-rw-r--r--TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.h27
1 files changed, 7 insertions, 20 deletions
diff --git a/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.h b/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.h
index 920bcfd0f0e..169e117664c 100644
--- a/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.h
+++ b/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.h
@@ -2,11 +2,10 @@
#include "tao/PortableInterceptorC.h"
#include "tao/LocalObject.h"
-#include "tao/IORInterceptor_Adapter.h"
#include "tao/IORInterceptor/IORInterceptor.h"
class ServerIORInterceptor :
-public virtual PortableInterceptor::IORInterceptor,
+public virtual PortableInterceptor::IORInterceptor_3_0,
public virtual ::CORBA::LocalObject
{
public:
@@ -14,27 +13,15 @@ public virtual ::CORBA::LocalObject
virtual void destroy ();
- virtual void establish_components (
- PortableInterceptor::IORInfo_ptr info
- );
+ virtual void establish_components (PortableInterceptor::IORInfo_ptr info);
- virtual void components_established (
- PortableInterceptor::IORInfo_ptr /*info*/
- )
- {
- }
+ virtual void components_established (PortableInterceptor::IORInfo_ptr info);
virtual void adapter_manager_state_changed (
- PortableInterceptor::AdapterManagerId /*id*/,
- PortableInterceptor::AdapterState /*state*/
- )
- {
- }
+ const char* id,
+ PortableInterceptor::AdapterState state);
virtual void adapter_state_changed (
- const PortableInterceptor::ObjectReferenceTemplateSeq& /*templates*/,
- PortableInterceptor::AdapterState /*state*/
- )
- {
- }
+ const PortableInterceptor::ObjectReferenceTemplateSeq& templates,
+ PortableInterceptor::AdapterState state);
};