summaryrefslogtreecommitdiff
path: root/examples/C++NPv1/Iterative_Logging_Server.cpp
blob: 7b7f895916345dcd24c17a4215c9aa2528c83f7e (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 "Iterative_Logging_Server.h"

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

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