18 lines
342 B
C++
18 lines
342 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class ControlServer;
|
|
class ControlServices;
|
|
class OpenGLComposite;
|
|
class OscServer;
|
|
class RuntimeStore;
|
|
|
|
bool StartControlServicesBoundary(
|
|
OpenGLComposite& composite,
|
|
RuntimeStore& runtimeStore,
|
|
ControlServices& controlServices,
|
|
ControlServer& controlServer,
|
|
OscServer& oscServer,
|
|
std::string& error);
|