Refactoring, better code encapsulation for different operating modes

This commit is contained in:
Jan Käberich 2020-09-17 09:53:52 +02:00
parent d9d00b8c71
commit 00244022c9
13 changed files with 701 additions and 519 deletions

View file

@ -0,0 +1,10 @@
#pragma once
#include "Protocol.hpp"
namespace Generator {
// Generator is using the manual mode with some encapsulation for setting up. No further functions required
void Setup(Protocol::GeneratorSettings g);
}