From 23c5e7d57e1e9216f4da3446656df2dc7202975d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 6 Apr 2013 13:14:45 +0200 Subject: tagging ychat-0.1 --- HTML.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 HTML.h (limited to 'HTML.h') diff --git a/HTML.h b/HTML.h new file mode 100644 index 0000000..16bf13d --- /dev/null +++ b/HTML.h @@ -0,0 +1,26 @@ +#ifndef GHTM_H +#define GHTM_H + +#include "html.h" + +using namespace std; + +class HTML +{ +private: + static html* obj; + +public: + static void init() + { + obj = new html(); + } + + static html& get() + { + return *obj; + } +}; + + +#endif -- cgit v1.2.3