summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/POA/Demux/demux_test_i.cpp
blob: f9158d6bcc20b0597781ac5b39fa0114c6208459 (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"

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

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

void Demux_Test_i::M302 (CORBA::Environment &env)
{
   ACE_UNUSED_ARG (env);
}

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