mirror of
https://github.com/gwm17/DaqGrimoire.git
synced 2024-11-23 03:08:52 -05:00
19 lines
218 B
C++
19 lines
218 B
C++
#ifndef DY_MESSAGE_H
|
|
#define DY_MESSAGE_H
|
|
|
|
#include "../DYListData.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace DaqGrimoire {
|
|
|
|
struct DYMessage
|
|
{
|
|
DYMessage() = default;
|
|
|
|
uint64_t size;
|
|
std::vector<char> body;
|
|
};
|
|
}
|
|
|
|
#endif |