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 file is part of Highlight. 00012 00013 Highlight is free software: you can redistribute it and/or modify 00014 it under the terms of the GNU General Public License as published by 00015 the Free Software Foundation, either version 3 of the License, or 00016 (at your option) any later version. 00017 00018 Highlight is distributed in the hope that it will be useful, 00019 but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 GNU General Public License for more details. 00022 00023 You should have received a copy of the GNU General Public License 00024 along with Highlight. If not, see <http://www.gnu.org/licenses/>. 00025 */ 00026 00027 00028 00029 #ifndef XHTMLGENERATOR_H 00030 #define XHTMLGENERATOR_H 00031 00032 #include "htmlgenerator.h" 00033 00034 namespace highlight 00035 { 00036 00048 class XHtmlGenerator : public highlight::HtmlGenerator 00049 { 00050 public: 00051 00052 XHtmlGenerator(); 00053 00054 ~XHtmlGenerator() {}; 00055 00056 private: 00057 00060 string getHeader(); 00061 00062 string getHeaderStart ( const string &title ); 00063 00064 }; 00065 00066 } 00067 00068 #endif