summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-02-15 07:06:39 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-02-15 07:06:39 +0000
commit17a372d78d47991e5f2266312ec7e28a37c755fd (patch)
tree7f45d26e0713aa53fe5d58749ec545e9159f6c39
parentef4b7d9eaad64a182c90c74ba2e245744ac984b8 (diff)
downloadATCD-17a372d78d47991e5f2266312ec7e28a37c755fd.tar.gz
ChangeLogTag:Mon Feb 14 22:56:17 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r--TAO/tao/Argument_T.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tao/Argument_T.h b/TAO/tao/Argument_T.h
index 4fa178ac64d..1c388886ec2 100644
--- a/TAO/tao/Argument_T.h
+++ b/TAO/tao/Argument_T.h
@@ -28,9 +28,9 @@ namespace TAO
/**
* @class Const_Argument_T
*
- * @brief
+ * @brief
+ *
*
- *
*/
template <typename T>
class Const_Argument_T : public Argument
@@ -38,15 +38,15 @@ namespace TAO
public:
virtual T arg (void) const = 0;
-
+
};
/**
* @class Mutable_Argument_T
*
- * @brief
+ * @brief
+ *
*
- *
*/
template <typename T>
class Mutable_Argument_T : public Argument
@@ -54,7 +54,7 @@ namespace TAO
public:
virtual T arg (void) = 0;
-
+
};
}