File tree 10 files changed +18
-11
lines changed
10 files changed +18
-11
lines changed Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Column.cpp
3
3
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
4
- * @ingroup SQLiteC++
4
+ * @ingroup SQLiteCpp
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Column.h
3
3
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
4
- * @ingroup SQLiteC++
4
+ * @ingroup SQLiteCpp
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Database.cpp
3
3
* @brief Management of a SQLite Database Connection.
4
- * @ingroup SQLiteC++
4
+ * @ingroup SQLiteCpp
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Database.h
3
3
* @brief Management of a SQLite Database Connection.
4
- * @ingroup SQLiteC++
4
+ * @ingroup SQLiteCpp
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Exception.h
3
3
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
4
- * @ingroup SQLiteC++
4
+ * @ingroup SQLiteCpp
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
Original file line number Diff line number Diff line change 1
1
/**
2
2
* @file SQLiteC++.h
3
3
* @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.
5
7
*
6
8
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
9
*
8
10
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
9
11
* or copy at http://opensource.org/licenses/MIT)
10
12
*/
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
+ */
11
17
#pragma once
12
18
13
19
14
20
// SQLiteC++.h requires sqlite3, and the corresponding library header
15
- #include " sqlite3.h"
21
+ #include < sqlite3.h>
16
22
17
23
// Include useful headers of SQLiteC++
24
+ #include "Exception.h"
18
25
#include "Database.h"
19
26
#include "Statement.h"
20
27
#include "Column.h"
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Statement.cpp
3
3
* @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
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Statement.h
3
3
* @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
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Transaction.cpp
3
3
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
4
- * @ingroup SQLiteC++
4
+ * @ingroup SQLiteCpp
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* @file Transaction.h
3
3
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
4
- * @ingroup SQLiteC++
4
+ * @ingroup SQLiteCpp
5
5
*
6
6
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
7
7
*
You can’t perform that action at this time.
0 commit comments