Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / examples / RtEC / Kokyu / Consumer.cpp
bloba126ffcde827be06692d36665b094f69f934a54b
1 #include "Consumer.h"
4 Consumer::Consumer ()
8 void
9 Consumer::push (const RtecEventComm::EventSet& events)
11 if (events.length () == 0)
13 ACE_DEBUG ((LM_DEBUG,
14 "Consumer (%P|%t) no events\n"));
15 return;
18 ACE_DEBUG ((LM_DEBUG, "Consumer (%P|%t) we received event type %d\n",
19 events[0].header.type));
22 void
23 Consumer::disconnect_push_consumer ()