Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r69725 - sandbox/tti/boost/tti
From: eldiener_at_[hidden]
Date: 2011-03-08 14:55:43


Author: eldiener
Date: 2011-03-08 14:55:41 EST (Tue, 08 Mar 2011)
New Revision: 69725
URL: http://svn.boost.org/trac/boost/changeset/69725

Log:
Updated the doxygen doc
Text files modified:
   sandbox/tti/boost/tti/comp_mem_fun.hpp | 20 ++++++++++++--------
   1 files changed, 12 insertions(+), 8 deletions(-)

Modified: sandbox/tti/boost/tti/comp_mem_fun.hpp
==============================================================================
--- sandbox/tti/boost/tti/comp_mem_fun.hpp (original)
+++ sandbox/tti/boost/tti/comp_mem_fun.hpp 2011-03-08 14:55:41 EST (Tue, 08 Mar 2011)
@@ -16,7 +16,7 @@
 /** \file
 */
 
-/// Expands to a metafunction which tests whether a member data or member function with a particular name and type exists.
+/// Expands to a metafunction which tests whether a member function with a particular name and composite type exists.
 /**
 
     trait = the name of the metafunction within the tti namespace.
@@ -27,7 +27,8 @@
     
               The metafunction types and return:
     
- T = the type, in the form of a member data pointer or member function pointer,
+ T = the member function type,
+ in the form of a member function pointer - 'return_type (Class::*)(parameter_types...)',
                     in which to look for our 'name'.
                     
                 returns = 'value' is true if the 'name' exists, with the appropriate type,
@@ -52,7 +53,7 @@
   } \
 /**/
 
-/// Expands to a metafunction class which tests whether a member data or member function with a particular name and type exists.
+/// Expands to a metafunction class which tests whether a member function with a particular name and composite type exists.
 /**
 
     trait = the name of the metafunction class within the tti namespace.
@@ -63,7 +64,8 @@
     
               The metafunction class's 'apply' metafunction types and return:
     
- T = the type, in the form of a member data pointer or member function pointer,
+ T = the member function type,
+ in the form of a member function pointer - 'return_type (Class::*)(parameter_types...)',
                     in which to look for our 'name'.
                     
                 returns = 'value' is true if the 'name' exists, with the appropriate type,
@@ -91,7 +93,7 @@
   } \
 /**/
 
-/// Expands to a metafunction which tests whether a member data or member function with a particular name and type exists.
+/// Expands to a metafunction which tests whether a member function with a particular name and composite type exists.
 /**
 
     name = the name of the inner member.
@@ -100,7 +102,8 @@
     
               The metafunction types and return:
     
- T = the type, in the form of a member data pointer or member function pointer,
+ T = the member function type,
+ in the form of a member function pointer - 'return_type (Class::*)(parameter_types...)',
                     in which to look for our 'name'.
                     
                 returns = 'value' is true if the 'name' exists, with the appropriate type,
@@ -115,7 +118,7 @@
   ) \
 /**/
 
-/// Expands to a metafunction class which tests whether a member data or member function with a particular name and type exists.
+/// Expands to a metafunction class which tests whether a member function with a particular name and composite type exists.
 /**
 
     name = the name of the inner member.
@@ -124,7 +127,8 @@
     
               The metafunction class's 'apply' metafunction types and return:
     
- T = the type, in the form of a member data pointer or member function pointer,
+ T = the member function type,
+ in the form of a member function pointer - 'return_type (Class::*)(parameter_types...)',
                     in which to look for our 'name'.
                     
                 returns = 'value' is true if the 'name' exists, with the appropriate type,


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk