• Main Page
  • Related Pages
  • Classes
  • Files
  • File List

src/XMLParser.hh

00001 /*
00002  * This file is part of peekabot.
00003  *
00004  * peekabot is free software; you can redistribute it and/or modify
00005  * it under the terms of the GNU General Public License as published by
00006  * the Free Software Foundation; either version 3 of the License, or
00007  * (at your option) any later version.
00008  *
00009  * peekabot is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00016  */
00017 
00018 #ifndef __PEEKABOT_XML_PARSER_HH
00019 #define __PEEKABOT_XML_PARSER_HH
00020 
00021 #include <string>
00022 
00023 namespace peekabot
00024 {
00025 
00026     class XMLHandler;
00027 
00038     class XMLParser
00039     {
00040     public:
00041         virtual ~XMLParser() {}
00042         
00047         virtual void invoke(const std::string& filename)
00048             throw(std::exception) = 0;
00049         
00054         virtual void set_handler(XMLHandler *handler) = 0;
00055     };
00056     
00057     
00058     // kanske inte behövs, men...
00059     class XMLParserFactory
00060     {
00061     public:
00062         static XMLParser *create_parser();
00063     };
00064 
00065 }
00066 
00067 #endif //__PEEKABOT_XML_PARSER_HH

Generated on Sun Jan 30 2011 for peekabot by  doxygen 1.7.1