5 #include "eigenpy/config.hpp" 15 std::ostringstream oss;
17 << EIGENPY_MAJOR_VERSION << delimiter
18 << EIGENPY_MINOR_VERSION << delimiter
19 << EIGENPY_PATCH_VERSION;
24 unsigned int minor_version,
25 unsigned int patch_version)
27 return EIGENPY_VERSION_AT_LEAST(major_version,minor_version,patch_version);
bool EIGENPY_DLLAPI checkVersionAtLeast(unsigned int major_version, unsigned int minor_version, unsigned int patch_version)
Checks if the current version of EigenPy is at least the version provided by the input arguments...
std::string EIGENPY_DLLAPI printVersion(const std::string &delimiter=".")
Returns the current version of EigenPy as a string using the following standard: EIGENPY_MINOR_VERSIO...