00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00012
00013 #ifndef MYTHXMLCLIENT_H_
00014 #define MYTHXMLCLIENT_H_
00015
00016 #include <QDomDocument>
00017
00018 #include "httpcomms.h"
00019
00020 #include "upnpexp.h"
00021
00022 #include "mythdbparams.h"
00023 #include "upnp.h"
00024 #include "soapclient.h"
00025
00028
00029
00030
00033
00034 class UPNP_PUBLIC MythXMLClient : public SOAPClient
00035 {
00036 protected:
00037
00038 bool m_bInQtThread;
00039
00040 public:
00041
00042 explicit MythXMLClient( const QUrl &url, bool bInQtThread = true );
00043 virtual ~MythXMLClient( );
00044
00045 UPnPResultCode GetConnectionInfo( const QString &sPin, DatabaseParams *pParams, QString &sMsg );
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 };
00063
00064 #endif
00065