UniMRCP  1.3.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
uni_revision.h
Go to the documentation of this file.
1 /*
2  * Copyright 2008-2014 Arsen Chaloyan
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef UNI_REVISION_H
18 #define UNI_REVISION_H
19 
20 /**
21  * @file uni_revision.h
22  * @brief UniMRCP Revision
23  *
24  * This file contains the revision base number and other relevant information.
25  */
26 
27 /** Revision base number. */
28 #define UNI_REVISION 2271
29 
30 /** Revision base string. */
31 #define UNI_REVISION_STRING "2271"
32 
33 /** Revision base date. */
34 #define UNI_REVISION_DATE "2015-02-02"
35 
36 /** Revision base stamp. */
37 #define UNI_REVISION_STAMP 20150202L
38 
39 
40 /** Check at compile time if the revision base number is at least a certain level. */
41 #define UNI_REVISION_AT_LEAST(rev) ((rev) < UNI_REVISION)
42 
43 #endif /* UNI_REVISION_H */