mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralfms.git
synced 2026-03-20 03:40:59 +00:00
26 lines
522 B
C++
26 lines
522 B
C++
//
|
|
// Created by stephane bourque on 2021-07-26.
|
|
//
|
|
|
|
#include "FirmwareCache.h"
|
|
|
|
namespace OpenWifi {
|
|
|
|
int FirmwareCache::Start() {
|
|
return 0;
|
|
}
|
|
|
|
void FirmwareCache::Stop() {
|
|
|
|
}
|
|
|
|
std::shared_ptr<FMSObjects::Firmware> GetFirmware([[maybe_unused]] const std::string & DeviceType, [[maybe_unused]] const std::string & Revision) {
|
|
return nullptr;
|
|
}
|
|
|
|
std::shared_ptr<FMSObjects::Firmware> AddFirmware([[maybe_unused]] const FMSObjects::Firmware &F) {
|
|
return nullptr;
|
|
}
|
|
|
|
}
|