16 lines
280 B
C++
16 lines
280 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class ControlServer;
|
|
class OpenGLComposite;
|
|
class OscServer;
|
|
class RuntimeHost;
|
|
|
|
bool StartRuntimeControlServices(
|
|
OpenGLComposite& composite,
|
|
RuntimeHost& runtimeHost,
|
|
ControlServer& controlServer,
|
|
OscServer& oscServer,
|
|
std::string& error);
|