You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
380 B
C++
16 lines
380 B
C++
#ifndef WEIGHUI_DDS_MSG_HPP
|
|
#define WEIGHUI_DDS_MSG_HPP
|
|
|
|
#include <queue>
|
|
#include <mutex>
|
|
#include "WeighingDDSType.hpp"
|
|
|
|
class DdsMsgData {
|
|
public:
|
|
static std::queue<WeighingSystem::SummaryUpdate> SummaryUpdate_queue_;
|
|
// 排队成功 → 显示 display_text
|
|
static std::queue<Queue::QueueSuccess> QueueSuccess_queue_;
|
|
static std::mutex queue_cv_mtx_;
|
|
};
|
|
|
|
#endif |