summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h21
1 files changed, 16 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h
index 039734cbbff..1c822dbb705 100644
--- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h
+++ b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h
@@ -27,7 +27,7 @@
// This is to remove "inherits via dominance" warnings from MSVC.
// MSVC is being a little too paranoid.
-#if defined(_MSC_VER)
+#if defined (_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
@@ -56,6 +56,9 @@ public:
/**
* @name PortableInterceptor::ServerRequestInterceptor Methods
+ *
+ * Methods required by the
+ * PortableInterceptor::ServerRequestInterceptor interface.
*/
//@{
virtual char * name (TAO_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
@@ -97,13 +100,20 @@ public:
protected:
/// Destructor
- /// Protected to force allocation on the heap.
+ /**
+ * Protected destructor to force deallocation by the reference
+ * counting mechanism.
+ */
~TAO_SSLIOP_Server_Invocation_Interceptor (void);
private:
- /// Prevent copying through the copy constructor and the assignment
- /// operator.
+ /**
+ * @name Copying and Assignment
+ *
+ * Protected to prevent copying through the copy constructor and the
+ * assignment operator.
+ */
//@{
ACE_UNIMPLEMENTED_FUNC (
TAO_SSLIOP_Server_Invocation_Interceptor (const TAO_SSLIOP_Server_Invocation_Interceptor &))
@@ -119,9 +129,10 @@ private:
/// interceptor will allow requests coming in on the insecure port
/// to be handled.
int no_protection_;
+
};
-#if defined(_MSC_VER) && (_MSC_VER >= 1200)
+#if defined (_MSC_VER) && (_MSC_VER >= 1200)
#pragma warning(pop)
#endif /* _MSC_VER */