summaryrefslogtreecommitdiff
path: root/ACE/ace
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-08-19 12:37:24 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-08-19 12:37:24 +0000
commite420b3885dee5c5b1aeaf2a2c7befa589319b822 (patch)
treeef8db0cc75c4dee5f8aecc7e8fd4a8a2e43c3ef2 /ACE/ace
parente5a553fa7dbe8cbe8ebf0241aceca7d9caa8eb8e (diff)
downloadATCD-e420b3885dee5c5b1aeaf2a2c7befa589319b822.tar.gz
Thu Aug 19 12:37:14 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Functor_T.h: Doxygen changes * include/makeinclude/platform_linux.GNU: Make it possible to control -mminimal-toc through the platform_macros.GNU file using minimaltoc
Diffstat (limited to 'ACE/ace')
-rw-r--r--ACE/ace/Functor_T.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/ACE/ace/Functor_T.h b/ACE/ace/Functor_T.h
index 554820e3c0b..53c06261acd 100644
--- a/ACE/ace/Functor_T.h
+++ b/ACE/ace/Functor_T.h
@@ -47,7 +47,8 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class ACE_Command_Callback
*
- * @brief Defines a class template that allows us to invoke a GOF
+ * @brief
+ * Defines a class template that allows us to invoke a GOF
* command style callback to an object without knowing anything
* about the object except its type.
*
@@ -60,14 +61,14 @@ template <class RECEIVER, class ACTION>
class ACE_Command_Callback : public ACE_Command_Base
{
public:
- /// Constructor: sets the <receiver_> of the Command to recvr, and the
- /// <action_> of the Command to <action>.
+ /// Constructor: sets the @c receiver_ of the Command to @a recvr, and the
+ /// @c action_ of the Command to @a action.
ACE_Command_Callback (RECEIVER &recvr, ACTION action);
/// Virtual destructor.
virtual ~ACE_Command_Callback (void);
- /// Invokes the method <action_> from the object <receiver_>.
+ /// Invokes the method @c action_ from the object @c receiver_.
virtual int execute (void *arg = 0);
private:
@@ -98,7 +99,8 @@ public:
/**
* @class ACE_Pointer_Hash
*
- * @brief Function object for hashing pointers
+ * @brief
+ * Function object for hashing pointers
*/
template <class TYPE>
class ACE_Pointer_Hash
@@ -111,7 +113,8 @@ public:
/**
* @class ACE_Equal_To
*
- * @brief Function object for comparing two objects of
+ * @brief
+ * Function object for comparing two objects of
* the given type for equality.
*/
template <class TYPE>
@@ -126,7 +129,8 @@ public:
/**
* @class ACE_Less_Than
*
- * @brief Function object for determining whether the first object of
+ * @brief
+ * Function object for determining whether the first object of
* the given type is less than the second object of the same
* type.
*/