diff options
author | deva <deva> | 2008-05-29 09:35:32 +0000 |
---|---|---|
committer | deva <deva> | 2008-05-29 09:35:32 +0000 |
commit | 5d1efcc49ba47eaf5919923f6f6ba82566d9baaf (patch) | |
tree | ba07a263240a197aa0dceb53e9affaae1b0f1009 /client/sendrecieve.h | |
parent | 9252ebd85447a3133701263b148adf77e325ecc0 (diff) |
Rewrote the argument parser, for a more "The QT-Way"-like method.
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_*/ |