1 #ifndef QSOCKETINTERMITTEN_H 2 #define QSOCKETINTERMITTEN_H 14 #include <QDataStream> 21 explicit QSocketIntermitten( std::string host_name, uint port_number, QObject *parent = 0 );
24 void OpenConnection();
25 void CloseConnection();
27 void Send( std::string command, std::string terminator=
"\n" );
28 void SendScl( std::string command );
30 std::string Receive();
31 std::string ReceiveSafe();
36 bool connection_open =
false;
42 #endif // QSOCKETINTERMITTEN_H Definition: qsocketintermitten.h:18