Rudiments
url.h
1 // Copyright (c) 2015 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef RUDIMENTS_URL_H
5 #define RUDIMENTS_URL_H
6 
7 #include <rudiments/private/urlincludes.h>
8 
35 class RUDIMENTS_DLLSPEC url : public file {
36  public:
37 
39  url();
40 
42  virtual ~url();
43 
44  void useHttpGet();
45  void useHttpPost();
46 
47  void setHttpPostContentType(const char *contenttype);
48  void setHttpPostData(const char *data, uint64_t size);
49 
50  #include <rudiments/private/url.h>
51 };
52 
53 #endif
Definition: url.h:35
Definition: file.h:19