-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.hpp
More file actions
20 lines (15 loc) · 698 Bytes
/
version.hpp
File metadata and controls
20 lines (15 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef OPENDNP3_VERSION_HPP
#define OPENDNP3_VERSION_HPP
// Caution, this is the only header that is guarenteed to change with every
// release, including this header will cause a recompile every time a new
// version is released.
//
// OPENDNP3_VERSION % 100 is the patch level
// OPENDNP3_VERSION / 100 % 1000 is the minor version
// OPENDNP3_VERSION / 100000 is the major version
#define OPENDNP3_VERSION 100100
// OPENDNP3_LIB_VERSION must be defined to be the same as OPENDNP3_VERSION
// but as a *string* in the form "x_y[_z]" where x is the major version
// number, y is the minor version number, and z is the patch level if not 0.
#define OPENDNP3_LIB_VERSION "1_1_0"
#endif