|
1 | | -/** |
2 | | - * @file SQLiteC++.h |
3 | | - * @ingroup SQLiteCpp |
4 | | - * @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files. |
5 | | - * |
6 | | - * Include this main header file in your project to gain access to all functionality provided by the wrapper. |
7 | | - * |
8 | | - * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) |
9 | | - * |
10 | | - * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt |
11 | | - * or copy at http://opensource.org/licenses/MIT) |
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 | | - */ |
17 | | -#pragma once |
18 | | - |
19 | | - |
20 | | -// SQLiteC++.h requires sqlite3, and the corresponding library header |
21 | | -#include <sqlite3.h> |
22 | | - |
23 | | -// Include useful headers of SQLiteC++ |
24 | | -#include "Exception.h" |
25 | | -#include "Database.h" |
26 | | -#include "Statement.h" |
27 | | -#include "Column.h" |
28 | | -#include "Transaction.h" |
29 | | - |
30 | | - |
31 | | -/** |
32 | | - * @brief Version numbers for SQLiteC++ are provided in the same way as sqlite3.h |
33 | | - * |
34 | | - * The [SQLITECPP_VERSION] C preprocessor macro in the SQLiteC++.h header |
35 | | - * evaluates to a string literal that is the SQLite version in the |
36 | | - * format "X.Y.Z" where X is the major version number |
37 | | - * and Y is the minor version number and Z is the release number. |
38 | | - * |
39 | | - * The [SQLITECPP_VERSION_NUMBER] C preprocessor macro resolves to an integer |
40 | | - * with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same |
41 | | - * numbers used in [SQLITECPP_VERSION]. |
42 | | - */ |
43 | | -#define SQLITECPP_VERSION "0.5.0" |
44 | | -#define SQLITECPP_VERSION_NUMBER 0005000 |
| 1 | +/** |
| 2 | + * @file SQLiteC++.h |
| 3 | + * @ingroup SQLiteCpp |
| 4 | + * @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files. |
| 5 | + * |
| 6 | + * Include this main header file in your project to gain access to all functionality provided by the wrapper. |
| 7 | + * |
| 8 | + * Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com) |
| 9 | + * |
| 10 | + * Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt |
| 11 | + * or copy at http://opensource.org/licenses/MIT) |
| 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 | + */ |
| 17 | +#pragma once |
| 18 | + |
| 19 | + |
| 20 | +// Include useful headers of SQLiteC++ |
| 21 | +#include "Exception.h" |
| 22 | +#include "Database.h" |
| 23 | +#include "Statement.h" |
| 24 | +#include "Column.h" |
| 25 | +#include "Transaction.h" |
| 26 | + |
| 27 | + |
| 28 | +/** |
| 29 | + * @brief Version numbers for SQLiteC++ are provided in the same way as sqlite3.h |
| 30 | + * |
| 31 | + * The [SQLITECPP_VERSION] C preprocessor macro in the SQLiteC++.h header |
| 32 | + * evaluates to a string literal that is the SQLite version in the |
| 33 | + * format "X.Y.Z" where X is the major version number |
| 34 | + * and Y is the minor version number and Z is the release number. |
| 35 | + * |
| 36 | + * The [SQLITECPP_VERSION_NUMBER] C preprocessor macro resolves to an integer |
| 37 | + * with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same |
| 38 | + * numbers used in [SQLITECPP_VERSION]. |
| 39 | + */ |
| 40 | +#define SQLITECPP_VERSION "0.5.0" |
| 41 | +#define SQLITECPP_VERSION_NUMBER 0005000 |
0 commit comments