summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Bug_3582/test_i.cpp
blob: e86eaeb1744e3478e88c454ff1fc0f453d23dacf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// -*- C++ -*-
#include "test_i.h"

test_i::test_i (CORBA::Short num,
                CORBA::ORB_ptr orb)
  : number_ (num),
    orb_ (CORBA::ORB::_duplicate (orb))
{
}

test_i::~test_i ()
{
}

CORBA::Short
test_i::number ()
{
  return this->number_;
}

void
test_i::shutdown ()
{
  ACE_DEBUG ((LM_DEBUG,
              "Server is shutting down via object %d.\n",
              this->number_));
  this->orb_->shutdown (false);
}