summaryrefslogtreecommitdiff
path: root/TAO/examples/Logging/Logging_Test.cpp
blob: d85983cd541dd93c15522012011d2f513fbe6659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "Logging_Test_i.h"

// This function runs the Logging service test.
int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
  Logger_Client logger_client;

  ACE_DEBUG ((LM_DEBUG,
              "\n \t IDL_Logger: client \n\n"));

  if (logger_client.init (argc, argv) == -1)
    return 1;

  return logger_client.run ();
}