forgeant docs-test-0
Build LLM-powered agents in C++
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1#ifndef FORGEANT_VERSION_HPP
2#define FORGEANT_VERSION_HPP
3
4#include <string_view>
5
6namespace forgeant {
7
8inline constexpr int VERSION_MAJOR = 0;
9inline constexpr int VERSION_MINOR = 2;
10inline constexpr int VERSION_PATCH = 0;
11
12std::string_view version_string() noexcept;
13
14} // namespace forgeant
15
16#endif // FORGEANT_VERSION_HPP
Definition agent.hpp:25
constexpr int VERSION_PATCH
Definition version.hpp:10
constexpr int VERSION_MAJOR
Definition version.hpp:8
std::string_view version_string() noexcept
constexpr int VERSION_MINOR
Definition version.hpp:9