spiegel-keyman/linux/keyman-system-service/src/main.cpp
Eberhard Beilharz ab25157364
feat(linux): Refactor to benefit from C++ RAII
Also apply changes from code review comments.
2023-05-22 19:51:45 +02:00

10 lines
184 B
C++

#include "KeymanSystemService.h"
int main(int argc, char *argv[]) {
KeymanSystemService dbusService;
if (dbusService.Failed()) {
return 1;
}
return dbusService.Loop();
}