blob: 114c236a6bfdb1bdf370c6ac28ec4066e17de1b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Implementation of TAO's Demux_Test interface
#include "demux_test_i.h"
#include "tao/ORB_Core.h"
// ctor
Demux_Test_i::Demux_Test_i ()
{}
// dtor
Demux_Test_i::~Demux_Test_i ()
{}
void Demux_Test_i::M302 ()
{
}
void Demux_Test_i::shutdown ()
{
TAO_ORB_Core_instance ()->orb ()->shutdown ();
}
|