summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/NotifyLog_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/NotifyLog_i.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/NotifyLog_i.cpp30
1 files changed, 14 insertions, 16 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/NotifyLog_i.cpp b/TAO/orbsvcs/orbsvcs/Log/NotifyLog_i.cpp
index a515cac8e58..f89d8acf1c0 100644
--- a/TAO/orbsvcs/orbsvcs/Log/NotifyLog_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Log/NotifyLog_i.cpp
@@ -9,6 +9,8 @@ ACE_RCSID (Log,
#define CA_FILTER "threshold > 10"
#define TCL_GRAMMAR "TCL"
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
TAO_NotifyLog_i::TAO_NotifyLog_i (CORBA::ORB_ptr orb,
PortableServer::POA_ptr poa,
TAO_LogMgr_i &logmgr_i,
@@ -187,13 +189,12 @@ TAO_NotifyLog_i::get_filter (ACE_ENV_SINGLE_ARG_DECL)
}
void
-TAO_NotifyLog_i::set_filter (CosNotifyFilter::Filter_ptr filter ACE_ENV_ARG_DECL)
+TAO_NotifyLog_i::set_filter (CosNotifyFilter::Filter_ptr /* filter */
+ ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException
))
{
- ACE_UNUSED_ARG (filter);
-
ACE_THROW (CORBA::NO_IMPLEMENT ());
//TODO: need to add impl
@@ -324,30 +325,25 @@ TAO_NotifyLog_i::get_qos (ACE_ENV_SINGLE_ARG_DECL)
}
void
-TAO_NotifyLog_i::set_qos (const CosNotification::QoSProperties& qos ACE_ENV_ARG_DECL)
+TAO_NotifyLog_i::set_qos (const CosNotification::QoSProperties& /* qos */
+ ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CosNotification::UnsupportedQoS,
CORBA::SystemException
))
{
- ACE_UNUSED_ARG (qos);
-
ACE_THROW (CORBA::NO_IMPLEMENT ());
//TODO: need to add later
}
void
-TAO_NotifyLog_i::validate_qos (const CosNotification::QoSProperties& required_qos,
- CosNotification::NamedPropertyRangeSeq_out available_qos ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((
- CosNotification::UnsupportedQoS,
- CORBA::SystemException
- ))
+TAO_NotifyLog_i::validate_qos (
+ const CosNotification::QoSProperties& /* required_qos */,
+ CosNotification::NamedPropertyRangeSeq_out /* available_qos */
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CosNotification::UnsupportedQoS,
+ CORBA::SystemException))
{
- ACE_UNUSED_ARG (required_qos);
-
- ACE_UNUSED_ARG (available_qos);
-
ACE_THROW (CORBA::NO_IMPLEMENT ());
//TODO: need to add later
@@ -372,3 +368,5 @@ TAO_NotifyLog_i::for_suppliers (
{
return this->event_channel_->for_suppliers(ACE_ENV_SINGLE_ARG_PARAMETER);
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL