Files
Cpp-in-Embedded-Systems/Chapter18/cib/libs/cib/detail/config_item.hpp
Amar Mahmutbegovic 8634accda5 add Chapter18
2025-02-06 00:19:59 +01:00

16 lines
317 B
C++

#pragma once
#include <stdx/tuple.hpp>
namespace cib::detail {
struct config_item {
[[nodiscard]] constexpr static auto extends_tuple() -> stdx::tuple<> {
return {};
}
[[nodiscard]] constexpr static auto exports_tuple() -> stdx::tuple<> {
return {};
}
};
} // namespace cib::detail