Skip to content

Commit 83a3ca6

Browse files
committed
Doxygen group name without the trailing ++
1 parent 4ee32ec commit 83a3ca6

10 files changed

+18
-11
lines changed

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
33
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
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
33
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
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
33
* @brief Management of a SQLite Database Connection.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
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
33
* @brief Management of a SQLite Database Connection.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
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
33
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

src/SQLiteC++.h

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
11
/**
22
* @file SQLiteC++.h
33
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
5+
*
6+
* Include this main header file in your project to gain access to all functionality provided by the wrapper.
57
*
68
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
79
*
810
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
911
* or copy at http://opensource.org/licenses/MIT)
1012
*/
13+
/**
14+
* @defgroup SQLiteCpp SQLiteC++
15+
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
16+
*/
1117
#pragma once
1218

1319

1420
// SQLiteC++.h requires sqlite3, and the corresponding library header
15-
#include "sqlite3.h"
21+
#include <sqlite3.h>
1622

1723
// Include useful headers of SQLiteC++
24+
#include "Exception.h"
1825
#include "Database.h"
1926
#include "Statement.h"
2027
#include "Column.h"

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
33
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
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
33
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
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
33
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
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
33
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
4-
* @ingroup SQLiteC++
4+
* @ingroup SQLiteCpp
55
*
66
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
77
*

0 commit comments

Comments
 (0)