#include "Foo_i.h" #include "OrbShutdownTask.h" Foo_i::Foo_i(unsigned num_clients) : value_(0), num_clients_(num_clients) { } Foo_i::~Foo_i() { } void Foo_i::op1() { } void Foo_i::op2(CORBA::Long value) { this->value_ = value; } CORBA::Long Foo_i::op3() { return this->value_; } void Foo_i::op4(CORBA::Long value) { this->value_ = value; } void Foo_i::op5() { throw FooException(); } void Foo_i::done() { unsigned num_left = --this->num_clients_; if (num_left == 0) { if (TheOrbShutdownTask::instance()->open(0) != 0) { ACE_ERROR((LM_ERROR, "(%P|%t)Foo_i::done: " "failed to create orb shutdown thread.\n")); } } }