• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

SRombauts / SQLiteCpp / #613698365

22 Nov 2023 10:24AM UTC coverage: 98.238%. First build
#613698365

travis-ci

669 of 681 relevant lines covered (98.24%)

29.86 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/include/SQLiteCpp/SQLiteCpp.h
1
/**
2
 * @file    SQLiteCpp.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-2025 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 <SQLiteCpp/SQLiteCppExport.h>
22
#include <SQLiteCpp/Assertion.h>
23
#include <SQLiteCpp/Exception.h>
24
#include <SQLiteCpp/Database.h>
25
#include <SQLiteCpp/Statement.h>
26
#include <SQLiteCpp/Column.h>
27
#include <SQLiteCpp/Transaction.h>
28

29

30
/**
31
 * @brief Version numbers for SQLiteC++ are provided in the same way as sqlite3.h
32
 *
33
 * The [SQLITECPP_VERSION] C preprocessor macro in the SQLiteC++.h header
34
 * evaluates to a string literal that is the SQLite version in the
35
 * format "X.Y.Z" where X is the major version number
36
 * and Y is the minor version number and Z is the release number.
37
 *
38
 * The [SQLITECPP_VERSION_NUMBER] C preprocessor macro resolves to an integer
39
 * with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same
40
 * numbers used in [SQLITECPP_VERSION].
41
 *
42
 * WARNING: shall always be updated in sync with PROJECT_VERSION in CMakeLists.txt
43
 */
44
#define SQLITECPP_VERSION           "3.03.03"   // 3.3.3
45
#define SQLITECPP_VERSION_NUMBER     3003003    // 3.3.3
46

STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc