RoboidControl-cpp/Participants/IsolatedParticipant.h

15 lines
285 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();
};
}
*/