refactor: move solver skeleton implementations to cpp

This commit is contained in:
NINI
2026-06-12 02:38:12 +09:00
parent cbd1a6c5d7
commit 825e03dbaf
35 changed files with 1001 additions and 683 deletions
+22
View File
@@ -0,0 +1,22 @@
#include <fesa/model/material.hpp>
#include <utility>
namespace fesa::model {
Material::Material(core::MaterialId id, std::string name)
: id_(id), name_(std::move(name))
{
}
core::MaterialId Material::id() const
{
return id_;
}
const std::string& Material::name() const
{
return name_;
}
} // namespace fesa::model