/* * $Id: parsing.h,v 1.2 2005/01/18 08:46:02 boonkerz Exp $ */ #ifndef __PARSING_H #define __PARSING_H #include "xml.h" #include #include #include #include class cxmlParse { private: void showDebug(void); public: void xmlParse(int daycount, std::string DataDir, std::string data_file, int inDPart); std::string parameter[6][5]; std::string celsius,speed,dayname,date,ort,sunrise,sunset,hi,low,feelhi,feellow,wetter,icon,winddir,windspeed,humidity,raindown,maxuv,tstormprob,rainamount,snowamount,precipamount; }; bool xCharData(const std::string &text); bool xEndElem(const std::string &name); bool xStartElem(const std::string &name, std::map &attrs); #endif //__PARSING_H