2021-07-06 15:43:33 +02:00
|
|
|
#ifndef YERBACON_HPP
|
|
|
|
#define YERBACON_HPP
|
|
|
|
|
2021-07-06 17:29:26 +02:00
|
|
|
#ifndef YBCON_VERSION
|
2021-07-07 20:06:18 +02:00
|
|
|
#warning "YBCON_VERSION is unknown and will therefore be set to a default value"
|
2021-07-06 17:29:26 +02:00
|
|
|
#define YBCON_VERSION "UNKNOWN"
|
|
|
|
#endif
|
|
|
|
|
2021-07-06 15:43:33 +02:00
|
|
|
namespace Yerbacon {
|
|
|
|
consteval const char* getVersion() noexcept { return YBCON_VERSION; }
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|