diff options
| author | randomdan <randomdan@localhost> | 2011-02-17 00:51:50 +0000 |
|---|---|---|
| committer | randomdan <randomdan@localhost> | 2011-02-17 00:51:50 +0000 |
| commit | 18edc161c00c63f9651f42bd665e69b5863a4443 (patch) | |
| tree | 94cdf5d64f3069d4f0911bddb57db6ea82fffdc9 /project2/urlRows.h | |
| parent | Fix creation of default insert action (diff) | |
| download | project2-18edc161c00c63f9651f42bd665e69b5863a4443.tar.bz2 project2-18edc161c00c63f9651f42bd665e69b5863a4443.tar.xz project2-18edc161c00c63f9651f42bd665e69b5863a4443.zip | |
Merge urlRows' and xslRows' CURL code into a common more fully featured (proxies, user agents, etc) base class; curlHelper
Diffstat (limited to 'project2/urlRows.h')
| -rw-r--r-- | project2/urlRows.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/project2/urlRows.h b/project2/urlRows.h index fe63a3f..d2bf038 100644 --- a/project2/urlRows.h +++ b/project2/urlRows.h @@ -6,8 +6,9 @@ #include <boost/shared_ptr.hpp> #include <map> #include "streamRows.h" +#include "curlHelper.h" -class UrlRows : public StreamRows { +class UrlRows : public StreamRows, CurlHelper { public: UrlRows(const xmlpp::Element * p); ~UrlRows(); @@ -16,10 +17,6 @@ class UrlRows : public StreamRows { void execute(const RowProcessor *) const; virtual void setFilter(const Glib::ustring &); - const Variable url; - - protected: - private: struct callback { callback(const UrlRows * urlRows, const RowProcessor * rp); |
