feat(domain-and-input-skeleton): step 0 — semantic-domain-and-origin-types

This commit is contained in:
KOKO\Mimi
2026-07-30 16:38:05 +09:00
parent b851575554
commit c7e64eb841
12 changed files with 455 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#pragma once
#include <cstdint>
#include <string>
namespace fesa {
struct EntityOrigin final {
std::string part_name;
std::string instance_name;
std::int64_t local_label;
bool operator==(const EntityOrigin&) const = default;
};
} // namespace fesa