summaryrefslogtreecommitdiff
path: root/TAO/tao/Protocol_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Protocol_Factory.cpp')
-rw-r--r--TAO/tao/Protocol_Factory.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/TAO/tao/Protocol_Factory.cpp b/TAO/tao/Protocol_Factory.cpp
deleted file mode 100644
index 364f6605918..00000000000
--- a/TAO/tao/Protocol_Factory.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-// $Id$
-
-#include "tao/Protocol_Factory.h"
-#include "ace/Dynamic_Service.h"
-
-ACE_RCSID(tao, Protocol_Factory, "$Id$")
-
-static const char prefix_[] = "\0";
-
-TAO_Protocol_Factory::TAO_Protocol_Factory (void)
-{
-}
-
-TAO_Protocol_Factory::~TAO_Protocol_Factory (void)
-{
-}
-
-int
-TAO_Protocol_Factory::init (int /* argc */,
- char * /* argv */ [])
-{
- return -1;
-}
-
-TAO_Acceptor *
-TAO_Protocol_Factory::make_acceptor (void)
-{
- return 0;
-}
-
-TAO_Connector *
-TAO_Protocol_Factory::make_connector (void)
-{
- return 0;
-}
-
-int
-TAO_Protocol_Factory::match_prefix (const ACE_CString & /* prefix */)
-{
- return 0;
-}
-
-const char *
-TAO_Protocol_Factory::prefix (void) const
-{
- return ::prefix_;
-}
-
-
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-
-template class ACE_Dynamic_Service<TAO_Protocol_Factory>;
-
-#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-
-#pragma instantiate ACE_Dynamic_Service<TAO_Protocol_Factory>
-
-#endif