aboutsummaryrefslogtreecommitdiff
path: root/week-5/StringWeek5.h
diff options
context:
space:
mode:
Diffstat (limited to 'week-5/StringWeek5.h')
-rw-r--r--week-5/StringWeek5.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/week-5/StringWeek5.h b/week-5/StringWeek5.h
deleted file mode 100644
index 8c2bdac..0000000
--- a/week-5/StringWeek5.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-
-#include <string>
-#include <sstream>
-
-class StringWeek5 {
-public:
- template <class T>
- void add(const T& value);
- void removeAll(const std::string& remove);
- const std::string& getText() const;
-private:
- std::string text;
-};
-
-#include "StringWeek5.hpp"