Author: wyoung
Date: Fri Jan 12 10:29:12 2007
New Revision: 1369

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1369&view=rev
Log:
More Doxygen warning squishes

Modified:
    trunk/lib/autoflag.h
    trunk/lib/fields.h
    trunk/lib/type_info.cpp

Modified: trunk/lib/autoflag.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/autoflag.h?rev=1369&r1=1368&r2=1369&view=diff
==============================================================================
--- trunk/lib/autoflag.h (original)
+++ trunk/lib/autoflag.h Fri Jan 12 10:29:12 2007
@@ -1,7 +1,6 @@
 /// \file autoflag.h
-/// \brief Defines a template for setting a flag on a variable as long
-/// as the object that set it is in scope.  Flag resets when object goes
-/// out of scope.  Works on anything that looks like bool.
+/// \brief Defines a template for setting a flag within a given variable
+/// scope, and resetting it when exiting that scope.
 
 /***********************************************************************
  Copyright (c) 2007 by Educational Technology Resources, Inc.  Others
@@ -29,6 +28,10 @@
 #if !defined(MYSQLPP_AUTOFLAG_H)
 #define MYSQLPP_AUTOFLAG_H
 
+/// \brief A template for setting a flag on a variable as long as the
+/// object that set it is in scope.  Flag resets when object goes
+/// out of scope.  Works on anything that looks like bool.
+
 template <class T = bool>
 class AutoFlag
 {

Modified: trunk/lib/fields.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/fields.h?rev=1369&r1=1368&r2=1369&view=diff
==============================================================================
--- trunk/lib/fields.h (original)
+++ trunk/lib/fields.h Fri Jan 12 10:29:12 2007
@@ -51,7 +51,7 @@
        }
 
        /// \brief Returns a field given its index.
-       const Field& at(size_type i) const;
+       const Field& at(Fields::size_type i) const;
 
        /// \brief Returns a field given its index.
        const Field& at(int i) const

Modified: trunk/lib/type_info.cpp
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/type_info.cpp?rev=1369&r1=1368&r2=1369&view=diff
==============================================================================
--- trunk/lib/type_info.cpp (original)
+++ trunk/lib/type_info.cpp Fri Jan 12 10:29:12 2007
@@ -122,6 +122,9 @@
 const mysql_type_info::sql_type_info_lookup
                mysql_type_info::lookups(mysql_type_info::types, 62);
 
+#if !defined(DOXYGEN_IGNORE)
+// Doxygen will not generate documentation for this section.
+
 mysql_ti_sql_type_info_lookup::mysql_ti_sql_type_info_lookup(
                const sql_type_info types[], const int size)
 {
@@ -131,6 +134,8 @@
                }
        }
 }
+
+#endif // !defined(DOXYGEN_IGNORE)
 
 unsigned char mysql_type_info::type(enum_field_types t,
                bool _unsigned, bool _null) 


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to