RoboidControl-cpp/Participants/IsolatedParticipant.h
2025-04-08 09:49:52 +02:00

13 lines
279 B
C++

#include "Participant.h"
namespace RoboidControl {
class IsolatedParticipant {
public:
/// @brief Isolated participant is used when the application is run without
/// networking
/// @return A participant without networking support
static Participant* Isolated();
};
}