Open Lighting Architecture  0.9.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Version.h
1 /*
2  * This library is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public
4  * License as published by the Free Software Foundation; either
5  * version 2.1 of the License, or (at your option) any later version.
6  *
7  * This library is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10  * Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public
13  * License along with this library; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
15  *
16  * Version.h
17  * Provides version information for all of OLA.
18  * Copyright (C) 2014 Peter Newman
19  */
20 
21 #ifndef INCLUDE_OLA_BASE_VERSION_H_
22 #define INCLUDE_OLA_BASE_VERSION_H_
23 
24 #include <ola/base/Macro.h>
25 #include <string>
26 
27 namespace ola {
28 namespace base {
29 
30 #define OLA_VERSION_MAJOR 0
31 #define OLA_VERSION_MINOR 9
32 #define OLA_VERSION_REVISION 3
33 
39 class Version {
40  public:
45  static unsigned int GetMajor();
46 
51  static unsigned int GetMinor();
52 
57  static unsigned int GetRevision();
58 
63  static std::string GetVersion();
64 
73  static bool IsAtLeast(unsigned int major,
74  unsigned int minor,
75  unsigned int revision);
76 
77  private:
78  DISALLOW_COPY_AND_ASSIGN(Version);
79 };
80 } // namespace base
81 } // namespace ola
82 #endif // INCLUDE_OLA_BASE_VERSION_H_