AdsLib
Loading...
Searching...
No Matches
LicenseAccess.h
1// SPDX-License-Identifier: MIT
6#pragma once
7
8#include "AdsDevice.h"
9
10namespace bhf
11{
12namespace ads
13{
15 LicenseAccess(const std::string& gw, AmsNetId netid, uint16_t port);
16 int ShowPlatformId(std::ostream& os) const;
17 int ShowSystemId(std::ostream& os) const;
18 int ShowVolumeNo(std::ostream& os) const;
19private:
20 AdsDevice device;
21};
22}
23}
Definition: AdsDef.h:21
Definition: AdsDevice.h:55
The NetId of and ADS device can be represented in this structure.
Definition: AdsDef.h:224
Definition: LicenseAccess.h:14