00001 00007 #ifndef HTMLPARSER_H 00008 #define HTMLPARSER_H 00009 00010 #include <string> 00011 00012 class HTMLParser { 00013 00014 public: 00015 string parse(const string& text); 00016 }; 00017 00018 #endif