summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-12-06 18:41:28 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-12-06 18:41:28 +0000
commit7c2679c76249ca4300fb3ea08f2b7256f8d1aa8b (patch)
treec849ca31bcdfd811e82534558b1bec035f86b9da /TAO/orbsvcs/orbsvcs/Notify
parent3a015a05192ffb619aca4bada24077fbcef3f8a5 (diff)
downloadATCD-7c2679c76249ca4300fb3ea08f2b7256f8d1aa8b.tar.gz
ChangeLogTag:Sat Dec 6 12:37:48 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp6
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp b/TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp
index d739b530ca6..f09e05f8428 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp
@@ -13,7 +13,7 @@
#include "tao/Any_Unknown_IDL_Type.h"
TAO_Notify_Constraint_Visitor::TAO_Notify_Constraint_Visitor (void)
- : implicit_id_ (NONE)
+ : implicit_id_ (TAO_Notify_Constraint_Visitor::EMPTY)
{
(void) this->implicit_ids_.bind (ACE_CString ("filterable_data",
0,
@@ -699,7 +699,7 @@ TAO_Notify_Constraint_Visitor::visit_component (
if (this->implicit_ids_.find (component_name, this->implicit_id_) != 0)
{
- this->implicit_id_ = NONE;
+ this->implicit_id_ = TAO_Notify_Constraint_Visitor::EMPTY;
}
// If this component has no sub-component, only an identifier,
@@ -711,7 +711,7 @@ TAO_Notify_Constraint_Visitor::visit_component (
// matches one of the nested field names in
// CosNotification::StructuredEvent, we just visit the nested
// component, if any.
- if (this->implicit_id_ == NONE)
+ if (this->implicit_id_ == TAO_Notify_Constraint_Visitor::EMPTY)
{
if (nested == 0)
{
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.h b/TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.h
index c9b60ee4836..bea7eb79521 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.h
@@ -106,7 +106,7 @@ protected:
EVENT_NAME,
VARIABLE_HEADER,
REMAINDER_OF_BODY,
- NONE
+ EMPTY
};
/// Storage for the type of implicit id the component has (if any).