cmvr-es/dependency/arm/third_party/eigenpy/v3.0.0/include/eigenpy/version.hpp

48 lines
1.4 KiB
C++

//
// Copyright (c) 2019-2020 INRIA
//
#ifndef __eigenpy_version_hpp__
#define __eigenpy_version_hpp__
#include <string>
#include "eigenpy/config.hpp"
namespace eigenpy {
///
/// \brief Returns the current version of EigenPy as a string using
/// the following standard:
/// EIGENPY_MINOR_VERSION.EIGENPY_MINOR_VERSION.EIGENPY_PATCH_VERSION
///
std::string EIGENPY_DLLAPI printVersion(const std::string& delimiter = ".");
///
/// \brief Returns the current version of Eigen3 as a string using
/// the following standard:
/// EIGEN_MINOR_VERSION.EIGEN_MINOR_VERSION.EIGEN_PATCH_VERSION
///
std::string EIGENPY_DLLAPI
printEigenVersion(const std::string& delimiter = ".");
///
/// \brief Checks if the current version of EigenPy is at least the version
/// provided
/// by the input arguments.
///
/// \param[in] major_version Major version to check.
/// \param[in] minor_version Minor version to check.
/// \param[in] patch_version Patch version to check.
///
/// \returns true if the current version of EigenPy is greater than the version
/// provided
/// by the input arguments.
///
bool EIGENPY_DLLAPI checkVersionAtLeast(unsigned int major_version,
unsigned int minor_version,
unsigned int patch_version);
} // namespace eigenpy
#endif // __eigenpy_version_hpp__