12 lines
209 B
C++
12 lines
209 B
C++
#ifndef YERBACON_HPP
|
|
#define YERBACON_HPP
|
|
|
|
#ifndef YBCON_VERSION
|
|
#define YBCON_VERSION "UNKNOWN"
|
|
#endif
|
|
|
|
namespace Yerbacon {
|
|
consteval const char* getVersion() noexcept { return YBCON_VERSION; }
|
|
}
|
|
|
|
#endif |