restructure library location
This commit is contained in:
27
src/lib/include/obelisk.h
Normal file
27
src/lib/include/obelisk.h
Normal 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
|
Reference in New Issue
Block a user