diff options
Diffstat (limited to 'client/sendrecieve.h')
-rw-r--r-- | client/sendrecieve.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/sendrecieve.h b/client/sendrecieve.h index a884b81..9e6c171 100644 --- a/client/sendrecieve.h +++ b/client/sendrecieve.h @@ -42,7 +42,7 @@ class SendRecieve : public QObject { Q_OBJECT public: - SendRecieve(); + SendRecieve(QString host, quint16 port); void makeConnection(QDomDocument *xml_req); QByteArray getResult(); @@ -63,6 +63,9 @@ private: QByteArray ba_all; bool has_result; QDomDocument *xml_req; + + QString host; + quint16 port; }; #endif/*_SENDRECIEVE_H_*/ |