summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-25 23:20:10 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-25 23:20:10 +0000
commitd4f7801398366b62ed1acb547b034383741b4a2d (patch)
treefce1de3fcf125a98428d068ddbbf52c595f0ef17
parent3a32581835ecd8b930cc17af0fc05f54b4aa126a (diff)
downloadATCD-d4f7801398366b62ed1acb547b034383741b4a2d.tar.gz
refactoring protocols hooks
-rw-r--r--TAO/tao/Default_Protocols_Properties_Protocols_Hooks.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/TAO/tao/Default_Protocols_Properties_Protocols_Hooks.h b/TAO/tao/Default_Protocols_Properties_Protocols_Hooks.h
new file mode 100644
index 00000000000..1b616db6615
--- /dev/null
+++ b/TAO/tao/Default_Protocols_Properties_Protocols_Hooks.h
@@ -0,0 +1,76 @@
+// -*- C++ -*-
+
+// ===================================================================
+/**
+ * @file Default_Protocols_Properties_Protocols_Hooks.h
+ *
+ * $Id$
+ *
+ * @author Jaiganesh Balasubramanian <jai@dre.vanderbilt.edu>
+ * Johnny Willemsen <jwillemsen@remedy.nl>
+ */
+// ===================================================================
+
+#ifndef TAO_DEFAULT_PROTOCOLS_PROPERTIES_PROTOCOLS_HOOKS_H
+#define TAO_DEFAULT_PROTOCOLS_PROPERTIES_PROTOCOLS_HOOKS_H
+
+#include /**/ "ace/pre.h"
+#include "ace/Service_Config.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/Protocols_Properties_Protocols_Hooks.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+class TAO_POA;
+
+class TAO_Export TAO_Default_Protocols_Properties_Protocols_Hooks
+ : public TAO_Protocols_Properties_Protocols_Hooks
+{
+public:
+
+ /// destructor
+ virtual ~TAO_Default_Protocols_Properties_Protocols_Hooks (void);
+
+ void server_protocol_properties_at_orb_level (TAO_IIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void client_protocol_properties_at_orb_level (TAO_IIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void server_protocol_properties_at_orb_level (TAO_UIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void client_protocol_properties_at_orb_level (TAO_UIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void server_protocol_properties_at_orb_level (TAO_SHMIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void client_protocol_properties_at_orb_level (TAO_SHMIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void server_protocol_properties_at_orb_level (TAO_DIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void client_protocol_properties_at_orb_level (TAO_DIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void server_protocol_properties_at_orb_level (TAO_SCIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+
+ void client_protocol_properties_at_orb_level (TAO_SCIOP_Protocol_Properties &protocol_properties
+ ACE_ENV_ARG_DECL);
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+ACE_STATIC_SVC_DECLARE_EXPORT (TAO,
+ TAO_Default_Protocols_Properties_Protocols_Hooks)
+ACE_FACTORY_DECLARE (TAO, TAO_Default_Protocols_Properties_Protocols_Hooks)
+
+#include /**/ "ace/post.h"
+#endif /* TAO_DEFAULT_PROTOCOLS_PROPERTIES_PROTOCOLS_HOOKS_H */