summaryrefslogtreecommitdiff
path: root/plugins/Quotes/HTTPSession.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Quotes/HTTPSession.h')
-rw-r--r--plugins/Quotes/HTTPSession.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/plugins/Quotes/HTTPSession.h b/plugins/Quotes/HTTPSession.h
deleted file mode 100644
index fe93a2dce5..0000000000
--- a/plugins/Quotes/HTTPSession.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef __8C9706FF_6B05_4d0d_85B8_5724E5DC0BA4_HTTPSession_h__
-#define __8C9706FF_6B05_4d0d_85B8_5724E5DC0BA4_HTTPSession_h__
-
-#include <string>
-
-class CHTTPSession
-{
-public:
- CHTTPSession();
- ~CHTTPSession();
-
- static bool Init();
-
- bool OpenURL(const tstring& rsURL);
- bool ReadResponce(tstring& rsResponce)const;
-
-
-public:
- class CImpl;
-private:
- typedef boost::scoped_ptr<CImpl> TImpl;
-
-private:
- TImpl m_pImpl;
-};
-
-#endif //__8C9706FF_6B05_4d0d_85B8_5724E5DC0BA4_HTTPSession_h__