Open Lighting Architecture 0.10.9
Loading...
Searching...
No Matches
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
27namespace ola {
28namespace base {
29
30#define OLA_VERSION_MAJOR 0
31#define OLA_VERSION_MINOR 10
32#define OLA_VERSION_REVISION 9
33
39class 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 Version(const Version &) = delete;
79 const Version &operator=(const Version &) = delete;
80};
81} // namespace base
82} // namespace ola
83#endif // INCLUDE_OLA_BASE_VERSION_H_
Helper macros.
Provides version information. OLA Version numbers are in the form major.minor.revision e....
Definition Version.h:39
static unsigned int GetMajor()
the Major version number
Definition Version.cpp:31
static std::string GetVersion()
the version number as a string.
Definition Version.cpp:43
static unsigned int GetMinor()
the Minor version number
Definition Version.cpp:35
static unsigned int GetRevision()
the revision number
Definition Version.cpp:39
static bool IsAtLeast(unsigned int major, unsigned int minor, unsigned int revision)
Check the running version is newer than or equal to a specific version.
Definition Version.cpp:49
The namespace containing all OLA symbols.
Definition Credentials.cpp:44