summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/Strategies/DIOP_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/Strategies/DIOP_Factory.h')
-rw-r--r--ACE/TAO/tao/Strategies/DIOP_Factory.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/ACE/TAO/tao/Strategies/DIOP_Factory.h b/ACE/TAO/tao/Strategies/DIOP_Factory.h
new file mode 100644
index 00000000000..8dcaae4f08b
--- /dev/null
+++ b/ACE/TAO/tao/Strategies/DIOP_Factory.h
@@ -0,0 +1,82 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file DIOP_Factory.h
+ *
+ * $Id$
+ *
+ * @author Michael Kircher
+ */
+//=============================================================================
+
+
+#ifndef TAO_DIOP_FACTORY_H
+#define TAO_DIOP_FACTORY_H
+
+#include /**/ "ace/pre.h"
+
+#include "tao/orbconf.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#if defined (TAO_HAS_DIOP) && (TAO_HAS_DIOP != 0)
+
+#include "tao/Strategies/strategies_export.h"
+#include "tao/Protocol_Factory.h"
+#include "ace/Service_Config.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+class TAO_Acceptor;
+class TAO_Connector;
+
+class TAO_Strategies_Export TAO_DIOP_Protocol_Factory
+ : public TAO_Protocol_Factory
+{
+public:
+ /// Constructor.
+ TAO_DIOP_Protocol_Factory (void);
+
+ /// Destructor.
+ virtual ~TAO_DIOP_Protocol_Factory (void);
+
+ // = Service Configurator hooks.
+ /// Dynamic linking hook
+ virtual int init (int argc, ACE_TCHAR* argv[]);
+
+ /// Verify prefix is a match
+ virtual int match_prefix (const ACE_CString &prefix);
+
+ /// Returns the prefix used by the protocol.
+ virtual const char *prefix (void) const;
+
+ /// Return the character used to mark where an endpoint ends and
+ /// where its options begin.
+ virtual char options_delimiter (void) const;
+
+ /**
+ * @name Protocol factory methods
+ *
+ * Check Protocol_Factory.h for a description of these methods.
+ */
+ //@{
+ virtual TAO_Acceptor *make_acceptor (void);
+ virtual TAO_Connector *make_connector (void);
+ virtual int requires_explicit_endpoint (void) const;
+ //@}
+};
+
+
+ACE_STATIC_SVC_DECLARE (TAO_DIOP_Protocol_Factory)
+ACE_FACTORY_DECLARE (TAO_Strategies, TAO_DIOP_Protocol_Factory)
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#endif /* TAO_HAS_DIOP && TAO_HAS_DIOP != 0 */
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_DIOP_FACTORY_H */