13 lines
279 B
C++
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();
|
|
};
|
|
|
|
} |