summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Event/lib/Consumer.h
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-17 20:20:02 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-17 20:20:02 +0000
commit836bcfdaf2929bd5a1cd8efc193b04b2541c9af3 (patch)
treec0ada509b3a66ac0fbef017167e6cd4479e14a89 /TAO/orbsvcs/tests/Event/lib/Consumer.h
parent4c88be0e21c16ddf7d7e5dc3726b037c4ac7c810 (diff)
downloadATCD-836bcfdaf2929bd5a1cd8efc193b04b2541c9af3.tar.gz
ChangeLogTag:Mon May 17 15:17:50 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/tests/Event/lib/Consumer.h')
-rw-r--r--TAO/orbsvcs/tests/Event/lib/Consumer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/tests/Event/lib/Consumer.h b/TAO/orbsvcs/tests/Event/lib/Consumer.h
index a442cd34cc8..796ffa38a99 100644
--- a/TAO/orbsvcs/tests/Event/lib/Consumer.h
+++ b/TAO/orbsvcs/tests/Event/lib/Consumer.h
@@ -41,10 +41,10 @@ class EC_Test_Export EC_Consumer : public POA_RtecEventComm::PushConsumer
// and it is up to the driver program to use the right one.
//
public:
- EC_Consumer (EC_Driver* driver,
- void* cookie);
+ EC_Consumer (EC_Driver* driver, void* cookie);
+ // Constructor
- void connect (
+ virtual void connect (
RtecEventChannelAdmin::ConsumerAdmin_ptr consumer_admin,
const RtecEventChannelAdmin::ConsumerQOS& qos,
int shutdown_event_type,
@@ -52,7 +52,7 @@ public:
// The driver program can build the QoS attributes and obtain the
// ConsumerAdmin, we do the rest.
- void connect (
+ virtual void connect (
const RtecEventChannelAdmin::ConsumerQOS& qos,
int shutdown_event_type,
CORBA::Environment &ACE_TRY_ENV);
@@ -68,7 +68,7 @@ public:
EC_Driver::Latency_Stats& latency) const;
// Accumulate our statistics to the totals.
- void dump_results (const char* name);
+ virtual void dump_results (const char* name);
// Printout the statistics
// = The RtecEventComm::PushConsumer methods