map/das-dn/third_party/AdsLib/ECatAccess.h
2024-12-05 11:04:47 +08:00

18 lines
255 B
C++

#pragma once
#include "AdsDevice.h"
namespace bhf
{
namespace ads
{
struct ECatAccess {
ECatAccess(const std::string& gw, AmsNetId netId, const uint16_t port);
long ListECatMasters(std::ostream& os) const;
private:
AdsDevice device;
};
}
}