Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
eigenpy
Commits
1c2e1589
Verified
Commit
1c2e1589
authored
Dec 10, 2019
by
Justin Carpentier
Browse files
version: add export of functions
parent
d942bcac
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/eigenpy/version.hpp
View file @
1c2e1589
...
...
@@ -6,6 +6,7 @@
#define __eigenpy_version_hpp__
#include "eigenpy/config.hpp"
#include "eigenpy/eigenpy_export.h"
#include <string>
...
...
@@ -17,7 +18,7 @@ namespace eigenpy
/// the following standard:
/// EIGENPY_MINOR_VERSION.EIGENPY_MINOR_VERSION.EIGENPY_PATCH_VERSION
///
std
::
string
printVersion
(
const
std
::
string
&
delimiter
=
"."
);
std
::
string
EIGENPY_EXPORT
printVersion
(
const
std
::
string
&
delimiter
=
"."
);
///
/// \brief Checks if the current version of EigenPy is at least the version provided
...
...
@@ -30,9 +31,9 @@ namespace eigenpy
/// \returns true if the current version of EigenPy is greater than the version provided
/// by the input arguments.
///
bool
checkVersionAtLeast
(
unsigned
int
major_version
,
unsigned
int
minor_version
,
unsigned
int
patch_version
);
bool
EIGENPY_EXPORT
checkVersionAtLeast
(
unsigned
int
major_version
,
unsigned
int
minor_version
,
unsigned
int
patch_version
);
}
#endif // __eigenpy_version_hpp__
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment