chore: add license to headers

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2023-06-25 14:21:55 -07:00
parent 275351e19c
commit 4b65315cdc
6 changed files with 176 additions and 58 deletions

View File

@ -20,17 +20,14 @@
*
*/
#include "updater/prismupdater/PrismUpdater.h"
#include "PrismUpdater.h"
int main(int argc, char* argv[])
{
PrismUpdaterApp wUpApp(argc, argv);
switch(wUpApp.status()) {
switch (wUpApp.status()) {
case PrismUpdaterApp::Starting:
case PrismUpdaterApp::Initialized:
{
case PrismUpdaterApp::Initialized: {
return wUpApp.exec();
}
case PrismUpdaterApp::Failed:
@ -40,5 +37,4 @@ int main(int argc, char* argv[])
default:
return -1;
}
}