diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-31 15:00:41 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-31 15:00:41 +0000 |
commit | c557b215da34b14af8d701025ee20282fd482db3 (patch) | |
tree | c943ca5ed57df718d13dde2fb07c7c25c3449ae1 /examples/Service_Configurator | |
parent | 9cbe2c56bf166cea55246254302f4dbed74eb0a9 (diff) | |
download | ATCD-c557b215da34b14af8d701025ee20282fd482db3.tar.gz |
added template specializations
Diffstat (limited to 'examples/Service_Configurator')
-rw-r--r-- | examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp index 71a3c10e556..7d6b088ba3b 100644 --- a/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp +++ b/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp @@ -186,8 +186,17 @@ HANDLE_THR_ACCEPTOR remote_thr_stream; ACE_Service_Object_Type rts (&remote_thr_stream, "Remote_Thr_Stream"); #if defined (ACE_TEMPLATES_REQUIRE_SPECIALIZATION) -template class CLI_Stream<THR_STREAM>; -template class Handle_Thr_Acceptor<CLI_Stream<THR_STREAM>, THR_ACCEPTOR>; +template class ACE_Acceptor<CLI_STREAM, ACE_TLI_ACCEPTOR>; +template class ACE_Accept_Strategy<CLI_STREAM, ACE_TLI_ACCEPTOR>; +template class ACE_Concurrency_Strategy<CLI_STREAM>; +template class ACE_Creation_Strategy<CLI_STREAM>; +template class ACE_Scheduling_Strategy<CLI_STREAM>; +template class ACE_Strategy_Acceptor<CLI_STREAM, ACE_TLI_ACCEPTOR>; +template class ACE_Svc_Handler<ACE_TLI_STREAM, ACE_MT_SYNCH>; +template class ACE_TSS<ACE_Dynamic>; +template class ACE_Thread_Strategy<CLI_STREAM>; +template class CLI_Stream <THR_STREAM>; +template class Handle_Thr_Acceptor<CLI_STREAM, THR_ACCEPTOR>; #endif /* ACE_TEMPLATES_REQUIRE_SPECIALIZATION */ #endif /* ACE_HAS_THREADS */ |