Files
maxDcb-C2Core/beacon/BeaconHttp.hpp
T
Maxime DE CAUMIA BAILLENX 0a454e8ecd Inital commit
2023-04-26 08:28:46 +02:00

19 lines
205 B
C++

#pragma once
#include "Beacon.hpp"
class BeaconHttp : public Beacon
{
public:
BeaconHttp(std::string& ip, int port, bool https=false);
~BeaconHttp();
void checkIn();
private:
bool m_isHttps;
};