rllib  1
rlhtml.h
Go to the documentation of this file.
1 /***************************************************************************
2  rlhtml.h - description
3  -------------------
4  begin : Thu Jul 30 2015
5  copyright : (C) Lehrig Software Enigineering
6  email : lehrig@t-online.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This library is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE as *
13  * published by the Free Software Foundation *
14  * *
15  ***************************************************************************/
16 #ifndef _RL_HTML_H_
17 #define _RL_HTML_H_
18 
19 #include "rldefine.h"
20 #include "rlstring.h"
21 
25 class rlHtml
26 {
27 public:
28  rlHtml();
29  virtual ~rlHtml();
30 
34  const char *htmlHeader();
35  const char *htmlTrailer();
39  int textFile(const char *filename, rlString &text);
43  int hexdumpFile(const char *filename, rlString &text);
44 };
45 
46 #endif
const char * htmlTrailer()
Definition: rlhtml.cpp:39
const char * htmlHeader()
Definition: rlhtml.cpp:29
int hexdumpFile(const char *filename, rlString &text)
Definition: rlhtml.cpp:100
int textFile(const char *filename, rlString &text)
Definition: rlhtml.cpp:45
Definition: rlhtml.h:25
virtual ~rlHtml()
Definition: rlhtml.cpp:25
rlHtml()
Definition: rlhtml.cpp:21