libpqxx 7.7.5
version.hxx
1/* Version info for libpqxx.
2 *
3 * DO NOT INCLUDE THIS FILE DIRECTLY; include pqxx/version instead.
4 *
5 * Copyright (c) 2000-2023, Jeroen T. Vermeulen.
6 *
7 * See COPYING for copyright license. If you did not receive a file called
8 * COPYING with this source code, please notify the distributor of this
9 * mistake, or contact the author.
10 */
11#ifndef PQXX_H_VERSION
12
13# if !defined(PQXX_HEADER_PRE)
14# error "Include libpqxx headers as <pqxx/header>, not <pqxx/header.hxx>."
15# endif
16
18# define PQXX_VERSION "7.7.5"
20# define PQXX_ABI "7.7"
21
23# define PQXX_VERSION_MAJOR 7
25# define PQXX_VERSION_MINOR 7
26
27# define PQXX_VERSION_CHECK check_pqxx_version_7_7
28
29namespace pqxx::internal
30{
32
53PQXX_LIBEXPORT int PQXX_VERSION_CHECK() noexcept;
54} // namespace pqxx::internal
55#endif
Internal items for libpqxx' own use. Do not use these yourself.
Definition composite.hxx:83
int PQXX_VERSION_CHECK() noexcept
Library version check stub.
Definition version.cxx:23