PolycodeDownloader.h 295 B

1234567891011121314151617181920
  1. #include <Polycode.h>
  2. #include <curl/curl.h>
  3. using namespace Polycode;
  4. class PolycodeDownloader : public EventDispatcher {
  5. public:
  6. PolycodeDownloader(String url);
  7. ~PolycodeDownloader();
  8. String getDataAsString();
  9. char *data;
  10. size_t size;
  11. protected:
  12. CURL *curl;
  13. };