Files
FESADev/include/fesa/ModuleInfo.hpp
T
2026-05-05 00:35:31 +09:00

24 lines
531 B
C++

#pragma once
#include <array>
#include <string_view>
namespace fesa {
using ModuleList = std::array<std::string_view, 12>;
inline constexpr ModuleList kArchitectureModules = {
"Analysis", "Assembly", "Boundary", "Core", "Element", "IO",
"Load", "Math", "Material", "Property", "Results", "Util",
};
constexpr const ModuleList& architectureModules() noexcept {
return kArchitectureModules;
}
constexpr std::string_view umbrellaFacadeHeader() noexcept {
return "fesa/fesa.hpp";
}
} // namespace fesa