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