2020-01-03 15:59:01 +01:00
|
|
|
#ifndef MASTODONPP_VERSION_HPP
|
|
|
|
#define MASTODONPP_VERSION_HPP
|
|
|
|
|
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
namespace mastodonpp
|
|
|
|
{
|
|
|
|
|
|
|
|
using std::string_view;
|
|
|
|
|
2020-01-06 16:42:42 +01:00
|
|
|
static constexpr string_view version{"@PROJECT_VERSION@"};
|
2020-01-03 15:59:01 +01:00
|
|
|
|
|
|
|
} // namespace mastodonpp
|
|
|
|
|
|
|
|
#endif // MASTODONPP_VERSION_HPP
|