blob: 2ac9b96075240bd72fc54df8f6cc840e19476621 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "PP_Test_Client.h"
#include "tao/Timeprobe.h"
// This function runs the client test.
int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
PP_Test_Client pp_test_client;
ACE_DEBUG ((LM_DEBUG,
"\n\tPluggable_Test: client\n\n"));
if (pp_test_client.init (argc, argv) == -1)
return 1;
int retval = pp_test_client.run ();
ACE_TIMEPROBE_PRINT;
return retval;
}
|