Files
FESA/include/fesa/model/entity_origin.hpp
T

17 lines
270 B
C++

#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