summaryrefslogtreecommitdiff
path: root/tests/Cached_Conn_Test.h
blob: 8fd619769c4bd4176c7362e709fa4a8d36e87507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$
//
// Contains classes for Cached_Conn_Test which are used in automatic
// template instantiation - IBM C++ requires these to be in their own header.

#ifndef __CACHED_CONN_TEST_H
#define __CACHED_CONN_TEST_H

#include "ace/SOCK_Stream.h"
#include "ace/Svc_Handler.h"
#include "ace/Synch.h"

class Svc_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
{
public:

  Svc_Handler (ACE_Thread_Manager *t = 0);
  int open (void *v = 0);
  int close (u_long flags = 0);
};

#endif /* __CACHED_ACCEPT_CONN_TEST_H */