Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / ForwardRequest / test_i.cpp
blobe86eaeb1744e3478e88c454ff1fc0f453d23dacf
1 // -*- C++ -*-
2 #include "test_i.h"
4 test_i::test_i (CORBA::Short num,
5 CORBA::ORB_ptr orb)
6 : number_ (num),
7 orb_ (CORBA::ORB::_duplicate (orb))
11 test_i::~test_i ()
15 CORBA::Short
16 test_i::number ()
18 return this->number_;
21 void
22 test_i::shutdown ()
24 ACE_DEBUG ((LM_DEBUG,
25 "Server is shutting down via object %d.\n",
26 this->number_));
27 this->orb_->shutdown (false);