RoboidControl-cpp/Posix/Participant.h
2025-02-24 09:30:17 +01:00

18 lines
399 B
C++

#pragma once
#include "../Participant.h"
namespace RoboidControl {
namespace Posix {
class Participant : public RoboidControl::Participant {
public:
void Setup(int localPort, const char* remoteIpAddress, int remotePort);
void Receive();
bool Send(RemoteParticipant* remoteParticipant, int bufferSize);
bool Publish(IMessage* msg);
};
} // namespace Posix
} // namespace RoboidControl