mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-11-02 03:37:57 +00:00
19 lines
346 B
C++
19 lines
346 B
C++
//
|
|
// Created by stephane bourque on 2023-04-19.
|
|
//
|
|
|
|
#include "GenericScheduler.h"
|
|
|
|
namespace OpenWifi {
|
|
|
|
int GenericScheduler::Start() {
|
|
poco_information(Logger(),"Starting...");
|
|
return 0;
|
|
}
|
|
|
|
void GenericScheduler::Stop() {
|
|
poco_information(Logger(),"Stopping...");
|
|
poco_information(Logger(),"Stopped...");
|
|
}
|
|
|
|
} // namespace OpenWifi
|