From 9c11fababb9b6b194e646fbeb62d141aacf74c43 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sat, 25 May 2024 16:08:17 +0300 Subject: [w13] Added solutions --- week13/Exercise1/WordString.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 week13/Exercise1/WordString.h (limited to 'week13/Exercise1/WordString.h') diff --git a/week13/Exercise1/WordString.h b/week13/Exercise1/WordString.h new file mode 100644 index 0000000..fc91e3d --- /dev/null +++ b/week13/Exercise1/WordString.h @@ -0,0 +1,8 @@ +#pragma once +#include "String.h" +#include "IndexArray.h" + +class WordString : public String, public IndexArray { +public: + WordString(const char* str); +}; -- cgit v1.2.3