summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-06 21:41:59 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-06 21:41:59 +0000
commit841fa191a1b0d5cc11126ab8ebcfabe81e67cdf3 (patch)
tree81718fd25f82ab70bf2b1fe6f14b52a7f7df9b56 /TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp
parentc070c5964e6e0a9eb3aafb291d65ff0f7c6944a9 (diff)
downloadATCD-841fa191a1b0d5cc11126ab8ebcfabe81e67cdf3.tar.gz
ChangeLogTag: Sun Jul 06 17:40:19 2003 Pradeep Gore <pradeep@oomworks.com>
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp')
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp b/TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp
index a19c1b84a5c..d0de3eb8249 100644
--- a/TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp
+++ b/TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp
@@ -2,28 +2,28 @@
#include "StructuredEvent.h"
-ACE_RCSID(RT_Notify, TAO_NS_StructuredEvent, "$id$")
+ACE_RCSID(RT_Notify, TAO_Notify_Tests_StructuredEvent, "$id$")
-TAO_NS_StructuredEvent::TAO_NS_StructuredEvent (void)
+TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (void)
{
}
-TAO_NS_StructuredEvent::~TAO_NS_StructuredEvent ()
+TAO_Notify_Tests_StructuredEvent::~TAO_Notify_Tests_StructuredEvent ()
{
}
-TAO_NS_StructuredEvent::TAO_NS_StructuredEvent (const char* name)
+TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (const char* name)
{
event_.header.fixed_header.event_name = CORBA::string_dup(name);
}
-TAO_NS_StructuredEvent::TAO_NS_StructuredEvent (const char* domain, const char* type)
+TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (const char* domain, const char* type)
{
event_.header.fixed_header.event_type.domain_name = CORBA::string_dup(domain);
event_.header.fixed_header.event_type.type_name = CORBA::string_dup(type);
}
-TAO_NS_StructuredEvent::TAO_NS_StructuredEvent (const char* name, const char* domain, const char* type)
+TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (const char* name, const char* domain, const char* type)
{
event_.header.fixed_header.event_name = CORBA::string_dup(name);
event_.header.fixed_header.event_type.domain_name = CORBA::string_dup(domain);
@@ -31,26 +31,26 @@ TAO_NS_StructuredEvent::TAO_NS_StructuredEvent (const char* name, const char* do
}
void
-TAO_NS_StructuredEvent::name (const char* name)
+TAO_Notify_Tests_StructuredEvent::name (const char* name)
{
event_.header.fixed_header.event_name = CORBA::string_dup(name);
}
void
-TAO_NS_StructuredEvent::type (const char* domain, const char* type)
+TAO_Notify_Tests_StructuredEvent::type (const char* domain, const char* type)
{
event_.header.fixed_header.event_type.domain_name = CORBA::string_dup(domain);
event_.header.fixed_header.event_type.type_name = CORBA::string_dup(type);
}
const char*
-TAO_NS_StructuredEvent::type (void)
+TAO_Notify_Tests_StructuredEvent::type (void)
{
return event_.header.fixed_header.event_type.type_name;
}
void
-TAO_NS_StructuredEvent::opt_header (const char* name, CORBA::Any& value)
+TAO_Notify_Tests_StructuredEvent::opt_header (const char* name, CORBA::Any& value)
{
CosNotification::PropertySeq& opt = event_.header.variable_header;
opt.length (opt.length () + 1);
@@ -60,7 +60,7 @@ TAO_NS_StructuredEvent::opt_header (const char* name, CORBA::Any& value)
}
void
-TAO_NS_StructuredEvent::filter (const char* name, CORBA::Any& value)
+TAO_Notify_Tests_StructuredEvent::filter (const char* name, CORBA::Any& value)
{
CosNotification::PropertySeq& filter = event_.filterable_data;
filter.length (filter.length () + 1);
@@ -70,19 +70,19 @@ TAO_NS_StructuredEvent::filter (const char* name, CORBA::Any& value)
}
void
-TAO_NS_StructuredEvent::qos (const char* name, CORBA::Any& value)
+TAO_Notify_Tests_StructuredEvent::qos (const char* name, CORBA::Any& value)
{
this->opt_header (name, value);
}
void
-TAO_NS_StructuredEvent::payload (CORBA::Any& value)
+TAO_Notify_Tests_StructuredEvent::payload (CORBA::Any& value)
{
event_.remainder_of_body = value;
}
CosNotification::StructuredEvent&
-TAO_NS_StructuredEvent::event (void)
+TAO_Notify_Tests_StructuredEvent::event (void)
{
return this->event_;
}