#pragma once #include #include #include "common/common_types.h" #include "common/type_system/TypeSpec.h" struct GoalEnum { TypeSpec base_type; bool is_bitfield = false; std::unordered_map entries; bool operator==(const GoalEnum& other) const; bool operator!=(const GoalEnum& other) const; };