From 80f04d4312273d670f7494028c922f653dc32b62 Mon Sep 17 00:00:00 2001 From: Renaud G Date: Sun, 7 Dec 2014 02:19:33 +0100 Subject: Add helpnode, stringresult and helpme file. --- HelpMe.md | 0 node/helpnode.cpp | 5 +++++ node/helpnode.h | 10 ++++++++++ stringresult.cpp | 5 +++++ stringresult.h | 10 ++++++++++ 5 files changed, 30 insertions(+) create mode 100644 HelpMe.md create mode 100644 node/helpnode.cpp create mode 100644 node/helpnode.h create mode 100644 stringresult.cpp create mode 100644 stringresult.h diff --git a/HelpMe.md b/HelpMe.md new file mode 100644 index 0000000..e69de29 diff --git a/node/helpnode.cpp b/node/helpnode.cpp new file mode 100644 index 0000000..77da788 --- /dev/null +++ b/node/helpnode.cpp @@ -0,0 +1,5 @@ +#include "helpnode.h" + +HelpNode::HelpNode() +{ +} diff --git a/node/helpnode.h b/node/helpnode.h new file mode 100644 index 0000000..89aba11 --- /dev/null +++ b/node/helpnode.h @@ -0,0 +1,10 @@ +#ifndef HELPNODE_H +#define HELPNODE_H + +class HelpNode : public ExecuteNode +{ +public: + HelpNode(); +}; + +#endif // HELPNODE_H diff --git a/stringresult.cpp b/stringresult.cpp new file mode 100644 index 0000000..7f7b822 --- /dev/null +++ b/stringresult.cpp @@ -0,0 +1,5 @@ +#include "stringresult.h" + +StringResult::StringResult() +{ +} diff --git a/stringresult.h b/stringresult.h new file mode 100644 index 0000000..19e9865 --- /dev/null +++ b/stringresult.h @@ -0,0 +1,10 @@ +#ifndef STRINGRESULT_H +#define STRINGRESULT_H + +class StringResult +{ +public: + StringResult(); +}; + +#endif // STRINGRESULT_H -- cgit v1.2.3-70-g09d2