00001 00008 #ifndef __HTMLGrabber_H__ 00009 #define __HTMLGrabber_H__ 00010 00012 #define HTMLGRABBER_MAX_FILENAME_SIZE 32 00013 00014 #define HTMLGRABBER_ID_LENGTH 32 00015 00039 class HTMLGrabber { 00040 public: 00041 00043 HTMLGrabber(); 00045 ~HTMLGrabber(); 00046 00049 00053 void grab(const char *url, char *path); 00056 00061 void grab(const char *url, char *path, const char *post); 00062 }; 00063 00064 #endif // __HTMLGrabber_H__ 00065