summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/POA/Demux/demux_test_client.i
blob: 9a113cb2f85953801f32f0cab2f689b7ba268d9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//$Id$
static void M302 (Demux_Test_ptr objref
                  TAO_ENV_ARG_DECL)
{
  objref->M302 (TAO_ENV_SINGLE_ARG_PARAMETER);
}

static void shutdown (Demux_Test_ptr objref
                      TAO_ENV_ARG_DECL)
{
  objref->shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
}

int Demux_Test_Client::init_operation_db (void)
{
   this->op_db_[0].op_ = M302;
   this->op_db_[1].op_ = shutdown;
   return 0;
}