17 lines
331 B
C++
17 lines
331 B
C++
#pragma once
|
|
|
|
#include "Participant.h"
|
|
|
|
namespace Passer {
|
|
namespace RoboidControl {
|
|
|
|
class UdpPosix : public Participant {
|
|
public:
|
|
void Setup(int localPort, const char *remoteIpAddress, int remotePort);
|
|
void Receive();
|
|
bool Send(IMessage *msg);
|
|
bool Publish(IMessage *msg);
|
|
};
|
|
|
|
} // namespace Control
|
|
} // namespace Passer
|