summaryrefslogtreecommitdiff
path: root/TAO/examples/Logging/Logging_Test.cpp
blob: 1a887e5a1dbb54a7c57598e2f171e2f8c9bfe028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

#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 ();

}