21 lines
319 B
C++
21 lines
319 B
C++
#include "IcmpClientImpl.h"
|
|
#include "IcmpClient.h"
|
|
|
|
|
|
namespace Network {
|
|
|
|
IcmpClient::IcmpClient() :
|
|
m_pIcmpClientImpl(new IcmpClientImpl())
|
|
{
|
|
}
|
|
|
|
IcmpClient::~IcmpClient() = default;
|
|
|
|
bool IcmpClient::Ping(const std::string& targetAddress)
|
|
{
|
|
return m_pIcmpClientImpl->Ping(targetAddress);
|
|
}
|
|
|
|
} // namespace Network
|
|
|