Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / Bug_3080 / test_i.cpp
blob07ad3876c6b1306a7cbe24cbc66ebeb237333f14
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 (void)
15 CORBA::Short
16 test_i::number (void)
18 return this->number_;
21 void
22 test_i::shutdown (void)
24 ACE_DEBUG ((LM_DEBUG,
25 "Server is shutting down via object %d.\n",
26 this->number_));
27 this->orb_->shutdown (0);