Roboid Control for C++
Loading...
Searching...
No Matches
Messages.h
1#pragma once
2
3#include "LinearAlgebra/Spherical.h"
4#include "LinearAlgebra/SwingTwist.h"
5#include "Thing.h"
6
7namespace RoboidControl {
8
9class ParticipantUDP;
10
11class IMessage {
12 public:
13 IMessage();
14 virtual unsigned char Serialize(char* buffer);
15
16 static unsigned char* ReceiveMsg(unsigned char packetSize);
17
18 // bool Publish(ParticipantUDP *participant);
19 // bool SendTo(ParticipantUDP *participant);
20};
21
22} // namespace RoboidControl