Mercurial > hg > easaier-soundaccess
diff data/fileio/HttpClient.h @ 95:ca3a5912fd78
extract the servlet name and put it in HttpClient
author | lbajardsilogic |
---|---|
date | Thu, 05 Jul 2007 16:31:31 +0000 |
parents | d32c0a79ba39 |
children | 40effd83ebcf |
line wrap: on
line diff
--- a/data/fileio/HttpClient.h Thu Jul 05 14:47:21 2007 +0000 +++ b/data/fileio/HttpClient.h Thu Jul 05 16:31:31 2007 +0000 @@ -40,6 +40,8 @@ inline QString getHost() const {return m_host;} inline quint16 getHostPort() const {return m_hostPort;} + inline QString getServletName() const {return m_servletName;} + inline void setUseProxy(const bool& ok) { m_useProxy = ok;} inline void setProxyInfo(const QString& proxy) { m_proxy = proxy;} inline void setProxyPortInfo(const int& port) { m_proxyPort = port;} @@ -64,6 +66,8 @@ QString m_host; quint16 m_hostPort; + + QString m_servletName; };