summaryrefslogtreecommitdiff
path: root/examples/C++NPv1/Reactive_Logging_Server.cpp
blob: a59c4e101409711182a485a538244204df53bcd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
** $Id$
**
** Copyright 2001 Addison Wesley. All Rights Reserved.
*/

#include "ace/Log_Msg.h"
#include "Reactive_Logging_Server.h"

int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
  Reactive_Logging_Server server;

  if (server.run (argc, argv) == -1)
    ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "server.run()"), 1);
  return 0;
}