mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralfms.git
synced 2025-11-01 19:27:47 +00:00
19 lines
351 B
C++
19 lines
351 B
C++
//
|
|
// Created by stephane bourque on 2021-10-04.
|
|
//
|
|
|
|
#ifndef OWFMS_PROV_SDK_H
|
|
#define OWFMS_PROV_SDK_H
|
|
|
|
#include "framework/MicroService.h"
|
|
|
|
namespace OpenWifi::SDK::Prov {
|
|
|
|
bool GetFirmwareOptions( const std::string & serialNumber, std::string &firmwareUpgrade,
|
|
bool &firmwareRCOnly);
|
|
|
|
};
|
|
|
|
|
|
#endif //OWFMS_PROV_SDK_H
|