fix Xcode project, add sequencer class files

This commit is contained in:
2017-05-31 08:45:18 +01:00
parent 73c58196b5
commit c55007e8bf
4 changed files with 24 additions and 0 deletions

View File

@@ -17,7 +17,9 @@ void LogRemote::start()
m_running = true;
m_thread = std::thread([&] {
#ifdef _WIN32
BT_SetTerminate();
#endif
net_init();
auto session_string = net_request("/start");
m_session = atoi(session_string.c_str());

3
engine/sequencer.cpp Normal file
View File

@@ -0,0 +1,3 @@
#include "pch.h"
#include "sequencer.h"

6
engine/sequencer.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
class Sequencer
{
};