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

@ -93,7 +93,8 @@ void CaptureProcessor::capture_config(const CaptureConfigMessage& message) {
}
}
void run() {
int main() {
EventDispatcher event_dispatcher { std::make_unique<CaptureProcessor>() };
event_dispatcher.run();
return 0;
}