libTriton version 1.0 build 1590
Loading...
Searching...
No Matches
version.hpp.in
1//! \file
2/*
3** Copyright (C) - Triton
4**
5** This program is under the terms of the Apache License 2.0.
6*/
7
8#ifndef TRITON_VERSION_H
9#define TRITON_VERSION_H
10
11
12
13//! The Triton namespace
14namespace triton {
15/*!
16 * \addtogroup triton
17 * @{
18 */
19
20 //! The libTriton's version.
21 enum version_e {
22 MAJOR = @VERSION_MAJOR@,
23 MINOR = @VERSION_MINOR@,
24 BUILD = @VERSION_BUILD@
25 };
26
27/*! @} End of triton namespace */
28};
29
30#endif // TRITON_VERSION_H