obelisk/src/lib/obelisk.cpp

25 lines
477 B
C++
Raw Normal View History

2023-02-16 02:26:14 -03:00
#include "include/obelisk.h"
#include "version.h"
std::string obelisk::Obelisk::getVersion()
{
return obelisk::version;
}
int obelisk::Obelisk::getLibVersion()
{
return obelisk::soVersion;
}
2023-02-21 09:09:48 -03:00
double obelisk::Obelisk::query(const std::string& leftEntity,
const std::string& verb,
const std::string& rightEntity)
{
}
std::string obelisk::Obelisk::query_action(const std::string& leftEntity,
const std::string& verb,
const std::string& rightEntity)
{
}