summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-11-15 04:04:17 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-11-15 04:04:17 +0000
commite153a13ca9c7aa6b17cfe23b342e25c5eabaf4fd (patch)
treed27a7a814d2dfd88d4f7facc328ccd2150137119
parent24812186730073caf74494dd5e9c7bc322ffa80a (diff)
downloadATCD-e153a13ca9c7aa6b17cfe23b342e25c5eabaf4fd.tar.gz
Fixed class documentation to be Doxygen-correct.
-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 */