PdCom  5.3
Process data communication client
/builds/etherlab.org/pdcom/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 #include "pdcom5_export.h"
30 
32 #define PDCOM_MAJOR 5
33 #define PDCOM_MINOR 3
35 #define PDCOM_RELEASE 1
37 
39 #define PDCOM_VERSION(A, B, C) (((A) << 16) + ((B) << 8) + (C))
40 
42 #define PDCOM_VERSION_CODE \
43  PDCOM_VERSION(PDCOM_MAJOR, PDCOM_MINOR, PDCOM_RELEASE)
44 
45 namespace PdCom {
47 PDCOM5_PUBLIC extern const char* const pdcom_version_code;
55 PDCOM5_PUBLIC extern const char* const pdcom_full_version;
56 }
57 
159 #endif // PDCOM5_H
160 
161 /****************************************************************************/
Definition: ClientStatistics.h:31