blob: 0d2081ee78cbe7f2fd14794a8ec8c862a943aa3f (
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
ACE_ENV_ARG_DECL)
{
objref->M302 (ACE_ENV_SINGLE_ARG_PARAMETER);
}
static void shutdown (Demux_Test_ptr objref
ACE_ENV_ARG_DECL)
{
objref->shutdown (ACE_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;
}
|