Proper namespacing, renaming, and refactoring

This commit is contained in:
stephb9959
2021-03-04 22:55:51 -08:00
parent 8f62a22137
commit f9e34e682b
31 changed files with 1584 additions and 967 deletions

22
src/uAuthService.cpp Normal file
View File

@@ -0,0 +1,22 @@
//
// Created by stephane bourque on 2021-03-04.
//
#include "uAuthService.h"
namespace uCentral::Auth {
Service *Service::instance_ = nullptr;
Service::Service() noexcept:
SubSystemServer("Authentication", "AUTH-SVR", "authentication") {
}
int Service::start() {
return 0;
}
void Service::stop() {
}
}; // end of namespace