summaryrefslogtreecommitdiff
path: root/ACE/examples/C++NPv2/Reactor_Logging_Server_T.h
blob: e21a745ec057943672eb31474c403312a4e61aea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
** Copyright 2002 Addison Wesley. All Rights Reserved.
*/

#ifndef _REACTOR_LOGGING_SERVER_T_H
#define _REACTOR_LOGGING_SERVER_T_H

#include "ace/ACE.h"
#include "ace/Reactor.h"

template <class ACCEPTOR>
class Reactor_Logging_Server : public ACCEPTOR
{
public:
  Reactor_Logging_Server (int argc, char *argv[],
                          ACE_Reactor *reactor);
};

#include "Reactor_Logging_Server_T.cpp"

#endif /* _REACTOR_LOGGING_SERVER_T_H */