summaryrefslogtreecommitdiff
path: root/TAO/tao/IIOP_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/IIOP_Factory.h')
-rw-r--r--TAO/tao/IIOP_Factory.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/TAO/tao/IIOP_Factory.h b/TAO/tao/IIOP_Factory.h
deleted file mode 100644
index 93f533bc809..00000000000
--- a/TAO/tao/IIOP_Factory.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// -*- C++ -*-
-// $Id$
-// ============================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// Protocol_Factory.h
-//
-// = AUTHOR
-// Fred Kuhns <fredk@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef TAO_IIOP_FACTORY_H
-#define TAO_IIOP_FACTORY_H
-
-#include "tao/Protocol_Factory.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-class TAO_Acceptor;
-class TAO_Connector;
-
-class TAO_Export TAO_IIOP_Protocol_Factory : public TAO_Protocol_Factory
-{
-public:
- TAO_IIOP_Protocol_Factory (void);
- virtual ~TAO_IIOP_Protocol_Factory (void);
-
- // = Service Configurator hooks.
- virtual int init (int argc, char* argv[]);
- // Dynamic linking hook
-
- virtual int match_prefix (const ACE_CString &prefix);
- // Verify prefix is a match
-
- virtual const char *prefix (void) const;
- // Returns the prefix used by the protocol.
-
- // Factory methods
- virtual TAO_Acceptor *make_acceptor (void);
- // Create an acceptor
-
- virtual TAO_Connector *make_connector (void);
- // Create a connector
-
-private:
- int major_;
- int minor_;
- // Changing the version number can be used to provide backwards
- // compatibility with old clients.
-};
-
-ACE_STATIC_SVC_DECLARE (TAO_IIOP_Protocol_Factory)
-ACE_FACTORY_DECLARE (TAO, TAO_IIOP_Protocol_Factory)
-
-#endif /* TAO_IIOP_FACTORY_H */