diff --git a/include/dto/ins_info.h b/include/dto/ins_info.h index dc41ecc..eb9252d 100644 --- a/include/dto/ins_info.h +++ b/include/dto/ins_info.h @@ -6,6 +6,7 @@ #include "../enum/icd_id.h" #include "dto/common_parameter.h" #include "dto/ins_data.h" +#include "dto/ins_main_data.h" #include "fsm/ins_status.h" #pragma pack(push, 1) @@ -14,7 +15,7 @@ struct InsInfo { InsStatus status; // 상태 (ins_status, 1 byte) CommonParameter com_param; // 공동 파라미터 (ICD-1, 5 bytes) InsData data; // INS 값 (ICD-4, 18 bytes) -}; + }; #pragma pack(pop) #endif diff --git a/include/dto/position_res.h b/include/dto/position_res.h index bb49a37..25816b4 100644 --- a/include/dto/position_res.h +++ b/include/dto/position_res.h @@ -4,6 +4,7 @@ #include #include "../enum/icd_id.h" +#include "dto/ins_main_data.h" #include "ins_data.h" #pragma pack(push, 1)