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