summaryrefslogtreecommitdiff
path: root/ACE/examples/C++NPv2/Reactor_Logging_Server_T.h
blob: 9a2d937ca9d6f88e5b43261fd2c88722f56c7f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
** 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);
};

#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "Reactor_Logging_Server_T.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */

#endif /* _REACTOR_LOGGING_SERVER_T_H */