AdsLib
Loading...
Searching...
No Matches
RouterAccess.h
1// SPDX-License-Identifier: MIT
6#pragma once
7
8#include "AdsDevice.h"
9
10namespace bhf
11{
12namespace ads
13{
15 RouterAccess(const std::string& gw, AmsNetId netid, uint16_t port);
16 bool PciScan(uint64_t pci_id, std::ostream& os) const;
17private:
18 AdsDevice device;
19};
20}
21}
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: RouterAccess.h:14