Condy v1.9
C++ Asynchronous System Call Layer for Linux
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1
4
5#pragma once
6
10#define CONDY_VERSION_MAJOR 1
11
15#define CONDY_VERSION_MINOR 9
16
17namespace condy {
18
22inline constexpr int version_major = CONDY_VERSION_MAJOR;
23
27inline constexpr int version_minor = CONDY_VERSION_MINOR;
28
29} // namespace condy
The main namespace for the Condy library.
Definition condy.hpp:37
constexpr int version_major
Condy major version.
Definition version.hpp:22
constexpr int version_minor
Condy minor version.
Definition version.hpp:27
#define CONDY_VERSION_MINOR
Condy minor version.
Definition version.hpp:15
#define CONDY_VERSION_MAJOR
Condy major version.
Definition version.hpp:10