This commit is contained in:
2025-07-08 16:21:03 +03:00
parent c7693b7fea
commit 646b0bde50
9 changed files with 413 additions and 56 deletions

View File

@@ -7,9 +7,8 @@
#include <concepts>
#include <string>
// #include "mcc_traits.h"
#include "mcc_traits.h"
namespace mcc::traits
{
@@ -36,7 +35,7 @@ concept mcc_astrom_engine_c = requires(T t, const T t_const) {
{ t_const.getState() } -> std::same_as<typename T::engine_state_t>;
{ t_const.errorString(std::declval<typename T::engine_err_t>()) } -> std::convertible_to<std::string>;
{ t_const.errorString(std::declval<typename T::engine_err_t>()) } -> mcc_formattable;
/* coordinates conversional methods */