From 6b846cf03c0bcbd8c276cb0af61a181e5f98eaae Mon Sep 17 00:00:00 2001 From: "William R. Otte" Date: Mon, 24 Jul 2006 15:50:11 +0000 Subject: Repo restructuring --- TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp | 88 ------------------------ 1 file changed, 88 deletions(-) delete mode 100644 TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp (limited to 'TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp') diff --git a/TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp b/TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp deleted file mode 100644 index 6c6a9882916..00000000000 --- a/TAO/orbsvcs/tests/Notify/lib/StructuredEvent.cpp +++ /dev/null @@ -1,88 +0,0 @@ -// $Id$ - -#include "StructuredEvent.h" - -ACE_RCSID(RT_Notify, TAO_Notify_Tests_StructuredEvent, "$Id$") - -TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (void) -{ -} - -TAO_Notify_Tests_StructuredEvent::~TAO_Notify_Tests_StructuredEvent () -{ -} - -TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (const char* name) -{ - event_.header.fixed_header.event_name = CORBA::string_dup(name); -} - -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_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); - event_.header.fixed_header.event_type.type_name = CORBA::string_dup(type); -} - -void -TAO_Notify_Tests_StructuredEvent::name (const char* name) -{ - event_.header.fixed_header.event_name = CORBA::string_dup(name); -} - -void -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_Notify_Tests_StructuredEvent::type (void) -{ - return event_.header.fixed_header.event_type.type_name; -} - -void -TAO_Notify_Tests_StructuredEvent::opt_header (const char* name, CORBA::Any& value) -{ - CosNotification::PropertySeq& opt = event_.header.variable_header; - opt.length (opt.length () + 1); - - opt[opt.length () - 1].name = CORBA::string_dup (name); - opt[opt.length () - 1].value = value; -} - -void -TAO_Notify_Tests_StructuredEvent::filter (const char* name, CORBA::Any& value) -{ - CosNotification::PropertySeq& filter = event_.filterable_data; - filter.length (filter.length () + 1); - - filter[filter.length () - 1].name = CORBA::string_dup (name); - filter[filter.length () - 1].value = value; -} - -void -TAO_Notify_Tests_StructuredEvent::qos (const char* name, CORBA::Any& value) -{ - this->opt_header (name, value); -} - -void -TAO_Notify_Tests_StructuredEvent::payload (CORBA::Any& value) -{ - event_.remainder_of_body = value; -} - -CosNotification::StructuredEvent& -TAO_Notify_Tests_StructuredEvent::event (void) -{ - return this->event_; -} -- cgit v1.2.1