14 lines
266 B
C++
14 lines
266 B
C++
#ifndef FESA_BUILD_INFO_H_
|
|
#define FESA_BUILD_INFO_H_
|
|
|
|
#include <string_view>
|
|
|
|
namespace fesa {
|
|
|
|
/// @brief Returns the stable solver version written to result metadata.
|
|
std::string_view SolverVersion() noexcept;
|
|
|
|
} // namespace fesa
|
|
|
|
#endif // FESA_BUILD_INFO_H_
|