From d91f394416d4cf9cbfecf00b651630db22253e44 Mon Sep 17 00:00:00 2001 From: anschrammh Date: Sat, 21 Dec 2019 14:59:48 +0100 Subject: [PATCH] Created new empty class which will be used to do Html queries --- src/app/HtmlClient.cpp | 1 + src/app/HtmlClient.h | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 src/app/HtmlClient.cpp create mode 100644 src/app/HtmlClient.h diff --git a/src/app/HtmlClient.cpp b/src/app/HtmlClient.cpp new file mode 100644 index 0000000..88efba8 --- /dev/null +++ b/src/app/HtmlClient.cpp @@ -0,0 +1 @@ +#include "HtmlClient.h" diff --git a/src/app/HtmlClient.h b/src/app/HtmlClient.h new file mode 100644 index 0000000..3cf3529 --- /dev/null +++ b/src/app/HtmlClient.h @@ -0,0 +1,11 @@ +#ifndef HTMLCLIENT_H +#define HTMLCLIENT_H + +class HtmlClient +{ + public: + protected: + private: +}; + +#endif //HTMLCLIENT_H \ No newline at end of file