Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / ImplRepo / oneway / Test_i.cpp
blobee6d0e6ea32e6a1c5403e5e8e9b68747ae2e7315
1 /* -*- C++ -*- */
3 #include "Test_i.h"
4 #include "ace/OS_NS_unistd.h"
6 Test_i::Test_i ()
7 : count_ (0)
11 Test_i::~Test_i ()
15 void
16 Test_i::foo ()
18 ACE_DEBUG ((LM_DEBUG,"foo called\n"));
19 ++this->count_;
22 CORBA::Short
23 Test_i::get_call_count ()
25 CORBA::Short r = this->count_;
26 this->count_ = 0;
27 return r;