00001 /*************************************************************************** 00002 xhtmlgenerator.h - description 00003 ------------------- 00004 begin : Mo Jun 21 2004 00005 copyright : (C) 2004 by Andre Simon 00006 email : andre.simon1@gmx.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 00019 #ifndef XHTMLGENERATOR_H 00020 #define XHTMLGENERATOR_H 00021 00022 #include "htmlgenerator.h" 00023 00024 namespace highlight { 00025 00037 class XHtmlGenerator : public highlight::HtmlGenerator 00038 { 00039 public: 00040 00041 XHtmlGenerator(); 00042 00044 virtual ~XHtmlGenerator() {}; 00045 00046 private: 00047 00051 string getHeader(const string &title); 00052 00053 string getHeaderStart(const string &title); 00054 00055 }; 00056 00057 } 00058 00059 #endif