diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2008-03-04 13:56:48 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2008-03-04 13:56:48 +0000 |
commit | dab6095386e31ea8302e88bb53b4735c6304e8c5 (patch) | |
tree | 1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/tests/Conn_Test.h | |
parent | 10ba54018c6ad1e7c316595158b998f55f0abcf8 (diff) | |
download | ATCD-dab6095386e31ea8302e88bb53b4735c6304e8c5.tar.gz |
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/tests/Conn_Test.h')
-rw-r--r-- | ACE/tests/Conn_Test.h | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/ACE/tests/Conn_Test.h b/ACE/tests/Conn_Test.h deleted file mode 100644 index 38e3cda4cd5..00000000000 --- a/ACE/tests/Conn_Test.h +++ /dev/null @@ -1,62 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// tests -// -// = FILENAME -// 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 -// Irfan Pyarali <irfan@cs.wustl.edu> -// -// ============================================================================ - -#include "ace/Service_Config.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "ace/Null_Condition.h" -#include "ace/Svc_Handler.h" -#include "ace/SOCK_Stream.h" - -class Svc_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH> -{ - // = TITLE - // This class is the product created by both <ACE_Connector> - // and <ACE_Acceptor> objects. - // - // = DESCRIPTION - // This class gets its own header file to work around AIX C++ - // compiler "features" related to template instantiation... It is - // only used by Conn_Test.cpp. -public: - Svc_Handler (ACE_Thread_Manager * = 0); - // Do-nothing constructor. - - virtual int open (void *); - // Initialization hook. - - virtual int recycle (void * = 0); - // Prepare for recycling. - - void send_data (void); - // Send data to server. - - void recv_data (void); - // Recv data from client. - - int close (u_long = 0); - // Shutdown the <Svc_Handler>. - - int idle (u_long flags); - // Set <this> to idle. -}; |