DABC (Data Acquisition Backbone Core)  2.9.9
version.h
Go to the documentation of this file.
1 // $Id: version.h 4371 2019-05-23 16:18:26Z linev $
2 
3 /************************************************************
4  * The Data Acquisition Backbone Core (DABC) *
5  ************************************************************
6  * Copyright (C) 2009 - *
7  * GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
8  * Planckstr. 1, 64291 Darmstadt, Germany *
9  * Contact: http://dabc.gsi.de *
10  ************************************************************
11  * This software can be used under the GPL license *
12  * agreements as stated in LICENSE.txt file *
13  * which is part of the distribution. *
14  ************************************************************/
15 
16 #ifndef DABC_version
17 #define DABC_version
18 
19 /* DABC Version information */
20 
21 /*
22  * These macros can be used in the following way:
23  *
24  * #if DABC_VERSION_CODE >= DABC_VERSION(2,3,5)
25  * #include "newinclude.h"
26  * #else
27  * #include "oldinclude.h"
28  * #endif
29  *
30 */
31 
32 #define DABC_RELEASE "2.10.0"
33 #define DABC_VERSION_CODE 0x20a00
34 #define DABC_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
35 
36 #endif