obelisk/src/lib/include/obelisk.h

33 lines
687 B
C
Raw Normal View History

2023-02-16 02:26:14 -03:00
#include <string>
/**
* @brief The obelisk namespace contains everything needed to compile obelisk
* code.
2023-02-16 02:26:14 -03:00
*
*/
namespace obelisk
{
2023-02-19 01:09:54 -03:00
/**
* @brief The obelisk library provides everything needed to consult the
* KnowledgeBase.
2023-02-19 01:09:54 -03:00
*
*/
2023-02-16 02:26:14 -03:00
class Obelisk
{
public:
/**
* @brief Get the obelisk version.
*
* @return std::string The version.
*/
std::string getVersion();
/**
* @brief Get the obelisk library so version.
*
* @return int The version.
*/
int getLibVersion();
};
} // namespace obelisk