map/das-dn/third_party/AdsLib/RouterAccess.h

22 lines
365 B
C
Raw Normal View History

2024-12-03 10:36:06 +08:00
// SPDX-License-Identifier: MIT
/**
Copyright (c) 2021 - 2022 Beckhoff Automation GmbH & Co. KG
*/
#pragma once
#include "AdsDevice.h"
2024-12-05 11:04:47 +08:00
namespace bhf
2024-12-03 10:36:06 +08:00
{
2024-12-05 11:04:47 +08:00
namespace ads
2024-12-03 10:36:06 +08:00
{
struct RouterAccess {
RouterAccess(const std::string& gw, AmsNetId netid, uint16_t port);
bool PciScan(uint64_t pci_id, std::ostream& os) const;
private:
AdsDevice device;
};
}
}