restructure library location

This commit is contained in:
2023-02-16 02:26:14 -03:00
parent bf5033c70d
commit 48955026c4
10 changed files with 60 additions and 33 deletions

27
src/lib/include/obelisk.h Normal file
View File

@@ -0,0 +1,27 @@
#include <string>
/**
* @brief The obelisk namespace contains everything needed to compile obelisk.
* code.
*
*/
namespace obelisk
{
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