#ifndef WEIGHUI_DDS_MSG_HPP #define WEIGHUI_DDS_MSG_HPP #include #include #include "WeighingDDSType.hpp" class DdsMsgData { public: static std::queue WeightInfoOk_queue_; // 称重业务异常信息 (Warning 主题, 弹窗样式与 WeightInfoOk 完全一致) static std::queue WeightInfoError_queue_; static std::queue SummaryUpdate_queue_; // 实时重量 (来自 weigh 程序的 ScaleInfo 主题) static std::queue ScaleInfo_queue_; static std::mutex queue_cv_mtx_; }; #endif