diff --git a/src/network.h b/src/network.h index 56bb290..f05a19d 100644 --- a/src/network.h +++ b/src/network.h @@ -1,11 +1,16 @@ -#ifndef NETWORK_H -#define NETWORK_H - - -class network -{ -public: - network(); -}; - -#endif // NETWORK_H \ No newline at end of file +#ifndef NETWORK_H +#define NETWORK_H + +#include "lib/json/json.hpp" +#include +using json = nlohmann::json; + +class network +{ + public: + send(QString str, QHostAddress ip); + private: + sendPing(QHostAddress ip); +}; + +#endif // NETWORK_H