PdCom  5.0
Process data communication client
Loading...
Searching...
No Matches
/home/abuild/rpmbuild/BUILD/pdcom5-5.0.0a6.11.gb118623/build/pdcom5.h
Go to the documentation of this file.
1/*****************************************************************************
2 * vim:tw=78
3 *
4 * Copyright (C) 2015-2016 Richard Hacker (lerichi at gmx dot net)
5 * Florian Pose <fp@igh.de>
6 *
7 * This file is part of the PdCom library.
8 *
9 * The PdCom library is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or (at your
12 * option) any later version.
13 *
14 * The PdCom library is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17 * License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with the PdCom library. If not, see <http://www.gnu.org/licenses/>.
21 *
22 *****************************************************************************/
23
26#ifndef PDCOM5_H
27#define PDCOM5_H
28
29
31#define PDCOM_MAJOR 5
33#define PDCOM_MINOR 0
35#define PDCOM_RELEASE 0
36
38#define PDCOM_VERSION(A, B, C) (((A) << 16) + ((B) << 8) + (C))
39
41#define PDCOM_VERSION_CODE \
42 PDCOM_VERSION(PDCOM_MAJOR, PDCOM_MINOR, PDCOM_RELEASE)
43
45namespace PdCom {
46extern const char* pdcom_version_string;
47}
48
150#endif // PDCOM5_H
151
152/****************************************************************************/
library version string as "major.minor.patch"
Definition: ClientStatistics.h:31