blob: ff46f6cdbb8ee120a98b31f9422688d22b56d744 (
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, const ShowableString& str);
};
|