Author: wyoung
Date: Fri Jan 12 10:47:18 2007
New Revision: 1373

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1373&view=rev
Log:
Yet more Doxygen warning squishes

Modified:
    trunk/lib/connection.h
    trunk/lib/field_names.h
    trunk/lib/field_types.h
    trunk/lib/fields.h
    trunk/lib/mysql++.h.in

Modified: trunk/lib/connection.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/connection.h?rev=1373&r1=1372&r2=1373&view=diff
==============================================================================
--- trunk/lib/connection.h (original)
+++ trunk/lib/connection.h Fri Jan 12 10:47:18 2007
@@ -10,7 +10,7 @@
 
 /***********************************************************************
  Copyright (c) 1998 by Kevin Atkinson, (c) 1999, 2000 and 2001 by
- MySQL AB, and (c) 2004-2006 by Educational Technology Resources, Inc.
+ MySQL AB, and (c) 2004-2007 by Educational Technology Resources, Inc.
  Others may also hold copyrights on code in this file.  See the CREDITS
  file in the top directory of the distribution for details.
 
@@ -49,14 +49,10 @@
 
 namespace mysqlpp {
 
-
 #if !defined(DOXYGEN_IGNORE)
-// Doxygen will not generate documentation for this section.
-
+// Make Doxygen ignore this
 class MYSQLPP_EXPORT Query;
-
-#endif // !defined(DOXYGEN_IGNORE)
-
+#endif
 
 /// \brief Manages the connection to the MySQL database.
 

Modified: trunk/lib/field_names.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/field_names.h?rev=1373&r1=1372&r2=1373&view=diff
==============================================================================
--- trunk/lib/field_names.h (original)
+++ trunk/lib/field_names.h Fri Jan 12 10:47:18 2007
@@ -3,7 +3,7 @@
 
 /***********************************************************************
  Copyright (c) 1998 by Kevin Atkinson, (c) 1999, 2000 and 2001 by
- MySQL AB, and (c) 2004, 2005 by Educational Technology Resources, Inc.
+ MySQL AB, and (c) 2004-2007 by Educational Technology Resources, Inc.
  Others may also hold copyrights on code in this file.  See the CREDITS
  file in the top directory of the distribution for details.
 
@@ -36,7 +36,10 @@
 
 namespace mysqlpp {
 
+#if !defined(DOXYGEN_IGNORE)
+// Make Doxygen ignore this
 class MYSQLPP_EXPORT ResUse;
+#endif
 
 /// \brief Holds a list of SQL field names
 class MYSQLPP_EXPORT FieldNames : public std::vector<std::string>

Modified: trunk/lib/field_types.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/field_types.h?rev=1373&r1=1372&r2=1373&view=diff
==============================================================================
--- trunk/lib/field_types.h (original)
+++ trunk/lib/field_types.h Fri Jan 12 10:47:18 2007
@@ -3,7 +3,7 @@
 
 /***********************************************************************
  Copyright (c) 1998 by Kevin Atkinson, (c) 1999, 2000 and 2001 by
- MySQL AB, and (c) 2004, 2005 by Educational Technology Resources, Inc.
+ MySQL AB, and (c) 2004-2007 by Educational Technology Resources, Inc.
  Others may also hold copyrights on code in this file.  See the CREDITS
  file in the top directory of the distribution for details.
 
@@ -34,7 +34,10 @@
 
 namespace mysqlpp {
 
+#if !defined(DOXYGEN_IGNORE)
+// Make Doxygen ignore this
 class MYSQLPP_EXPORT ResUse;
+#endif
 
 /// \brief A vector of SQL field types.
 class MYSQLPP_EXPORT FieldTypes : public std::vector<mysql_type_info>

Modified: trunk/lib/fields.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/fields.h?rev=1373&r1=1372&r2=1373&view=diff
==============================================================================
--- trunk/lib/fields.h (original)
+++ trunk/lib/fields.h Fri Jan 12 10:47:18 2007
@@ -4,7 +4,7 @@
 
 /***********************************************************************
  Copyright (c) 1998 by Kevin Atkinson, (c) 1999, 2000 and 2001 by
- MySQL AB, and (c) 2004, 2005 by Educational Technology Resources, Inc.
+ MySQL AB, and (c) 2004-2007 by Educational Technology Resources, Inc.
  Others may also hold copyrights on code in this file.  See the CREDITS
  file in the top directory of the distribution for details.
 
@@ -33,7 +33,10 @@
 
 namespace mysqlpp {
 
+#if !defined(DOXYGEN_IGNORE)
+// Make Doxygen ignore this
 class MYSQLPP_EXPORT ResUse;
+#endif
 
 /// \brief A container similar to \c std::vector for holding
 /// mysqlpp::Field records.

Modified: trunk/lib/mysql++.h.in
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/mysql%2B%2B.h.in?rev=1373&r1=1372&r2=1373&view=diff
==============================================================================
--- trunk/lib/mysql++.h.in (original)
+++ trunk/lib/mysql++.h.in Fri Jan 12 10:47:18 2007
@@ -1,19 +1,16 @@
 /// \file mysql++.h
 /// \brief The main MySQL++ header file.
 ///
-/// This file brings in all MySQL++ headers except for custom*.h,
-/// which is a strictly optional feature of MySQL++.
+/// This file brings in all MySQL++ headers except for custom.h and
+/// custom-macros.h which are a strictly optional feature of MySQL++.
 ///
 /// There is no point in trying to optimize which headers you include,
-/// because every MySQL++ program needs query.h, and that #includes
-/// all the other headers indirectly, except for custom*.h.  The only
-/// possible optimization is to include query.h instead of mysql++.h,
-/// and this results only in trivial compile time reductions at the
-/// expense of code clarity.
+/// because the MySQL++ headers are so intertwined.  You can only get
+/// trivial compile time benefits, at the expense of clarity.
 
 /***********************************************************************
  Copyright (c) 1998 by Kevin Atkinson, (c) 1999, 2000 and 2001 by
- MySQL AB, and (c) 2004-2006 by Educational Technology Resources, Inc.
+ MySQL AB, and (c) 2004-2007 by Educational Technology Resources, Inc.
  Others may also hold copyrights on code in this file.  See the CREDITS
  file in the top directory of the distribution for details.
 
@@ -35,7 +32,7 @@
  USA
 ***********************************************************************/
 
-#if !defined(MYSQLPP_MYSQLPP_H)
+#ifndef MYSQLPP_MYSQLPP_H
 #define MYSQLPP_MYSQLPP_H
 
 /// \brief Encode MySQL++ library version number.


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

Reply via email to