Clean up baseband processors to each have a main().

This commit is contained in:
Jared Boone 2016-07-24 21:42:11 -07:00
parent c8ffea0098
commit fe1a6c09bb
10 changed files with 16 additions and 36 deletions

View file

@ -104,7 +104,8 @@ void ERTProcessor::idm_handler(
shared_memory.application_queue.push(message);
}
void run() {
int main() {
EventDispatcher event_dispatcher { std::make_unique<ERTProcessor>() };
event_dispatcher.run();
return 0;
}