You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
361 B

#include "segl.h"
namespace segl {
std::string getVersion() {
return (std::string)VERSION;
}
std::string getFullVersion() {
return "libsegl " VERSION ": Compiled on " __DATE__ " at " __TIME__;
}
void printVersion() {
std::cout << getVersion() << std::endl;
}
void printFullVersion() {
std::cout << getFullVersion() << std::endl;
}
} // namespace segl