version.in.h
1 /* Copyright (C) 2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 
13 #ifndef HELIB_VERSION_H
14 #define HELIB_VERSION_H
15 
16 namespace helib {
17 
23 struct version
24 {
25 
26  // clang-format off
30  static constexpr long major = @PROJECT_VERSION_MAJOR@;
34  static constexpr long minor = @PROJECT_VERSION_MINOR@;
38  static constexpr long patch = @PROJECT_VERSION_PATCH@;
39  // clang-format on
40 
44  static constexpr auto asString = "v@PROJECT_VERSION@";
45 
55  static inline constexpr bool greaterEquals(long major_,
56  long minor_ = 0,
57  long patch_ = 0)
58  {
59  if (major_ < 0 || minor_ < 0 || patch_ < 0)
60  return false;
61  long min_version = (((major_ << 8) ^ minor_) << 8) ^ patch_;
62  long our_version = (((major << 8) ^ minor) << 8) ^ patch;
63  return our_version >= min_version;
64  }
65 
72  static const char* libString();
73 
74 }; // struct version
75 
76 } // namespace helib
77 
78 #endif // HELIB_VERSION_H
static constexpr long major
The major number of this version of HElib.
Definition: version.in.h:30
static constexpr auto asString
The string representation of this version of HElib.
Definition: version.in.h:44
static constexpr bool greaterEquals(long major_, long minor_=0, long patch_=0)
Function that returns whether this version of HElib is equal to or higher than a specified version.
Definition: version.in.h:55
The class acts as a namespace with all members static. Holds the version number for this code of HEli...
Definition: version.in.h:24
Definition: apiAttributes.h:21
static const char * libString()
Get the string version from the HElib compiled library instead of the one defined in the header.
Definition: version.in.cpp:8
static constexpr long patch
The patch number of this version of HElib.
Definition: version.in.h:38
static constexpr long minor
The minor number of this version of HElib.
Definition: version.in.h:34