1
0
Fork 0
mirror of https://github.com/gwm17/DaqGrimoire.git synced 2024-11-23 03:08:52 -05:00
DaqGrimoire/include/NetIO/DYMessage.h

19 lines
218 B
C
Raw Normal View History

2022-09-29 20:36:44 -04:00
#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