From dc0bb4c93c4915b939ad1ecdc0745e53dc1f0d0f Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sat, 19 Sep 2020 03:42:03 +0200 Subject: Work on xml-to-html converter for register documentation --- hw_html/html.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 hw_html/html.hpp (limited to 'hw_html/html.hpp') diff --git a/hw_html/html.hpp b/hw_html/html.hpp new file mode 100644 index 0000000..f9f1c29 --- /dev/null +++ b/hw_html/html.hpp @@ -0,0 +1,21 @@ +#include +#include + +class html +{ +public: + enum error + { + OK, + INVALID_PATH, + OPEN_ERR, + WRITE_ERR + }; + + html(); + virtual ~html(); + error open(const char *path); + +protected: + FILE *f; +}; -- cgit v1.2.3