// $Id$ // ============================================================================ // // = LIBRARY // tests // // = FILENAME // Cache_Conn_Test.h // // = DESCRIPTION // Define class needed for generating templates. IBM C++ requires this to // be in its own file for auto template instantiation. // // = AUTHOR // Kirthika Parameswaran // // ============================================================================ #ifndef ACE_TESTS_CACHED_CONN_TEST_H #define ACE_TESTS_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 { public: Svc_Handler (ACE_Thread_Manager *t = 0); int open (void *v = 0); int close (u_long flags = 0); }; #endif /* ACE_TESTS_CACHED_ACCEPT_CONN_TEST_H */