Skip to content

Commit 833aeea

Browse files
committed
Fix a bug for the "brief" Doxygen tag of all files
- patched by moving the @InGroup command before the @brief one
1 parent 83a3ca6 commit 833aeea

11 files changed

+11
-11
lines changed

examples/example1/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file main.cpp
3-
* @brief Two short examples in a row.
3+
* @brief A few short examples in a row.
44
*
55
* Demonstrate how-to use the SQLite++ wrapper
66
*

src/Column.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Column.cpp
3-
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
43
* @ingroup SQLiteCpp
4+
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/Column.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Column.h
3-
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
43
* @ingroup SQLiteCpp
4+
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/Database.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Database.cpp
3-
* @brief Management of a SQLite Database Connection.
43
* @ingroup SQLiteCpp
4+
* @brief Management of a SQLite Database Connection.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/Database.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Database.h
3-
* @brief Management of a SQLite Database Connection.
43
* @ingroup SQLiteCpp
4+
* @brief Management of a SQLite Database Connection.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/Exception.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Exception.h
3-
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
43
* @ingroup SQLiteCpp
4+
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/SQLiteC++.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file SQLiteC++.h
3-
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
43
* @ingroup SQLiteCpp
4+
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
55
*
66
* Include this main header file in your project to gain access to all functionality provided by the wrapper.
77
*

src/Statement.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Statement.cpp
3-
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
43
* @ingroup SQLiteCpp
4+
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/Statement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Statement.h
3-
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
43
* @ingroup SQLiteCpp
4+
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/Transaction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Transaction.cpp
3-
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
43
* @ingroup SQLiteCpp
4+
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/Transaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Transaction.h
3-
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
43
* @ingroup SQLiteCpp
4+
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

0 commit comments

Comments
 (0)