summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.cpp')
-rw-r--r--TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.cpp21
1 files changed, 20 insertions, 1 deletions
diff --git a/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.cpp b/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.cpp
index 283a13d504e..42bb29ef004 100644
--- a/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.cpp
+++ b/TAO/DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.cpp
@@ -17,7 +17,6 @@ void
ServerIORInterceptor::establish_components (
PortableInterceptor::IORInfo_ptr info)
{
-
const char * permission = "ServerRequiresAuth";
// arbitrary tag.
@@ -37,3 +36,23 @@ ServerIORInterceptor::establish_components (
std::cout << "Created Tagged IOR." << std::endl;
}
+
+void
+ServerIORInterceptor::components_established (
+ PortableInterceptor::IORInfo_ptr /*info*/)
+{
+}
+
+void
+ServerIORInterceptor::adapter_manager_state_changed (
+ const char* /*id*/,
+ PortableInterceptor::AdapterState /*state*/)
+{
+}
+
+void
+ServerIORInterceptor::adapter_state_changed (
+ const PortableInterceptor::ObjectReferenceTemplateSeq& /*templates*/,
+ PortableInterceptor::AdapterState /*state*/)
+{
+}