Fix a bug for the "brief" Doxygen tag of all files

- patched by moving the @ingroup command before the @brief one
This commit is contained in:
Sébastien Rombauts 2013-03-16 17:50:37 +01:00
parent 83a3ca6f37
commit 833aeead7a
11 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
/** /**
* @file main.cpp * @file main.cpp
* @brief Two short examples in a row. * @brief A few short examples in a row.
* *
* Demonstrate how-to use the SQLite++ wrapper * Demonstrate how-to use the SQLite++ wrapper
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Column.cpp * @file Column.cpp
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Column.h * @file Column.h
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Database.cpp * @file Database.cpp
* @brief Management of a SQLite Database Connection.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief Management of a SQLite Database Connection.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Database.h * @file Database.h
* @brief Management of a SQLite Database Connection.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief Management of a SQLite Database Connection.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Exception.h * @file Exception.h
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file SQLiteC++.h * @file SQLiteC++.h
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
* *
* Include this main header file in your project to gain access to all functionality provided by the wrapper. * Include this main header file in your project to gain access to all functionality provided by the wrapper.
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Statement.cpp * @file Statement.cpp
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Statement.h * @file Statement.h
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Transaction.cpp * @file Transaction.cpp
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *

View File

@ -1,7 +1,7 @@
/** /**
* @file Transaction.h * @file Transaction.h
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
* @ingroup SQLiteCpp * @ingroup SQLiteCpp
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
* *
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* *