aboutsummaryrefslogtreecommitdiff
path: root/week-5/StringWeek5.h
blob: 8c2bdac4d8be494a77e90a3d497beeccb9afbd9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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"