mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralfms.git
synced 2025-10-30 02:12:22 +00:00
16 lines
269 B
C++
16 lines
269 B
C++
//
|
|
// Created by stephane bourque on 2021-10-04.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace OpenWifi::SDK::Prov {
|
|
|
|
bool GetFirmwareOptions( const std::string & serialNumber, std::string &firmwareUpgrade,
|
|
bool &firmwareRCOnly);
|
|
|
|
};
|
|
|