summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/POA/Demux/demux_test_i.cpp
blob: b2bf2d2b63d59d1b25ac789f63db84eaf1f6eb8c (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
//$Id$
// Implementation of TAO's Demux_Test interface

#include "demux_test_i.h"
#include "tao/ORB_Core.h"

// ctor
Demux_Test_i::Demux_Test_i (void)
{}

// dtor
Demux_Test_i::~Demux_Test_i (void)
{}

void Demux_Test_i::M302 (CORBA::Environment &)
    ACE_THROW_SPEC ((CORBA::SystemException))
{
}

void Demux_Test_i::shutdown (CORBA::Environment &)
    ACE_THROW_SPEC ((CORBA::SystemException))
{
  TAO_ORB_Core_instance ()->orb ()->shutdown ();
}