summaryrefslogtreecommitdiff
path: root/client/proxy.h
diff options
context:
space:
mode:
authorAlex Borisov <borisov.alexandr@rambler.ru>2011-10-23 04:10:55 +0300
committerAlex Borisov <borisov.alexandr@rambler.ru>2011-10-23 04:10:55 +0300
commit21ad7eac963bc329395fa893300fb5c8f721fd77 (patch)
tree10dda6e6170071332aab490faeeb599f10ff6e03 /client/proxy.h
parent3eef0376635624c354a5e1b8a2680b74eb23a423 (diff)
Logging facility, Config class, tray icon, custom QApplication subclass
Diffstat (limited to 'client/proxy.h')
-rw-r--r--client/proxy.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/client/proxy.h b/client/proxy.h
deleted file mode 100644
index 321922a..0000000
--- a/client/proxy.h
+++ /dev/null
@@ -1,37 +0,0 @@
-
-#include <client.h>
-
-class Proxy
-{
-public:
- std::string login;
- std::string password;
- std::string host;
- short port;
-
- Proxy(): port(0) {}
- virtual void Parse(std::string entry);
-};
-
-
-class ProxyEntry: public Proxy
-{
-public:
- std::string country;
- std::string state;
- std::string city;
-
- ProxyEntry(): Proxy() {}
- void Parse(std::string entry);
-};
-
-
-class ProxyEntryStatic: public Proxy
-{
-public:
- std::string name;
- int position;
-
- ProxyEntryStatic(): Proxy(), position(0) {}
- void Parse(std::string entry);
-};