/*************************************************************************** rlhtml.h - description ------------------- begin : Thu Jul 30 2015 copyright : (C) Lehrig Software Enigineering email : lehrig@t-online.de ***************************************************************************/ /*************************************************************************** * * * This library is free software; you can redistribute it and/or modify * * it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE as * * published by the Free Software Foundation * * * ***************************************************************************/ #ifndef _RL_HTML_H_ #define _RL_HTML_H_ #include "rldefine.h" #include "rlstring.h" /*!
conveniance base class for html*/ class rlHtml { public: rlHtml(); virtual ~rlHtml(); /*!
html can be configured with rlhtml.css*/ const char *htmlHeader(); const char *htmlTrailer(); /*!
html representation of text file*/ int textFile(const char *filename, rlString &text); /*!
hexdump representation of text file*/ int hexdumpFile(const char *filename, rlString &text); }; #endif