-
Notifications
You must be signed in to change notification settings - Fork 559
Expand file tree
/
Copy pathDatabase.cppm
More file actions
40 lines (32 loc) · 863 Bytes
/
Database.cppm
File metadata and controls
40 lines (32 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* @file Exception.cppm
* @brief Module file for SQLiteCpp Exception class.
*/
module;
#include <SQLiteCpp/Database.h>
export module sqlite.database;
import sqlite.sqlite3forward;
/**
* @namespace SQLite
* @brief The SQLite SQLite:: namespace
*/
export namespace SQLite {
using SQLite::OPEN_READONLY;
using SQLite::OPEN_READWRITE;
using SQLite::OPEN_CREATE;
using SQLite::OPEN_URI;
using SQLite::OPEN_MEMORY;
using SQLite::OPEN_NOMUTEX;
using SQLite::OPEN_FULLMUTEX;
using SQLite::OPEN_SHAREDCACHE;
using SQLite::OPEN_PRIVATECACHE;
using SQLite::OPEN_NOFOLLOW;
using SQLite::OK;
using SQLite::VERSION;
using SQLite::VERSION_NUMBER;
using SQLite::getLibVersion;
using SQLite::getLibVersionNumber;
using SQLite::Header;
using SQLite::Database;
}
export namespace sqlite = SQLite;