diff options
Diffstat (limited to 'node')
| -rw-r--r-- | node/stringnode.cpp | 6 | ||||
| -rw-r--r-- | node/stringnode.h | 11 |
2 files changed, 17 insertions, 0 deletions
diff --git a/node/stringnode.cpp b/node/stringnode.cpp new file mode 100644 index 0000000..5dc99fd --- /dev/null +++ b/node/stringnode.cpp @@ -0,0 +1,6 @@ +#include "stringnode.h" + +StringNode::StringNode() +{ + +} diff --git a/node/stringnode.h b/node/stringnode.h new file mode 100644 index 0000000..6f01fe8 --- /dev/null +++ b/node/stringnode.h @@ -0,0 +1,11 @@ +#ifndef STRINGNODE_H +#define STRINGNODE_H + + +class StringNode +{ +public: + StringNode(); +}; + +#endif // STRINGNODE_H
\ No newline at end of file |