aboutsummaryrefslogtreecommitdiff
path: root/week10/Exercise10/ShowableString.h
blob: 6bf02e64a80589e782494a12b17f3249d118c2b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once
#include "ModifiableString.h"
#include <iostream>

class ShowableString : ModifiableString {
public:
	friend std::ostream& operator<<(std::ostream& ostr, const ShowableString& str);
	friend std::istream& operator>>(std::istream& istr, ShowableString& str);
};