SQLiteXX  0.1.0
 All Classes Namespaces Files Functions Enumerations Enumerator
SQLiteXX.h
Go to the documentation of this file.
1 
2 #ifndef __SQLITEXX_SQLITE_SQLITEXX_H__
3 #define __SQLITEXX_SQLITE_SQLITEXX_H__
4 
5 #include "Backup.h"
6 #include "DBConnection.h"
7 #include "Exception.h"
8 #include "Functions.h"
9 #include "Open.h"
10 #include "Statement.h"
11 #include "Transaction.h"
12 
13 #include <sqlite3.h>
14 
15 
16 #define SQLITEXX_VERSION "0.1.0"
17 
18 
21 namespace sqlite
22 {
23  inline const char* sqlite_libversion() noexcept
24  {
25  return sqlite3_libversion();
26  }
27 
28  inline int sqlite_libversion_number() noexcept
29  {
30  return sqlite3_libversion_number();
31  }
32 
33  inline const char* sqlitexx_libversion() noexcept
34  {
35  return SQLITEXX_VERSION;
36  }
37 }
38 
39 #endif
40