obelisk/src/lib/obelisk.cpp

15 lines
280 B
C++
Raw Normal View History

2023-02-16 02:26:14 -03:00
#include "include/obelisk.h"
#include "version.h"
// TODO: Move the models to the library then link the compiler to the library
std::string obelisk::Obelisk::getVersion()
{
return obelisk::version;
}
int obelisk::Obelisk::getLibVersion()
{
return obelisk::soVersion;
}