aboutsummaryrefslogtreecommitdiff
path: root/week10/Exercise10/ShowableString.cpp
blob: 1231a9c52fe2bc11e831406636baf478d2146b2a (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "ShowableString.h"

std::ostream& operator<<(std::ostream& ostr, const ShowableString& str) {
	return ostr << str;
}

std::istream& operator>>(std::istream& istr, const ShowableString& str) {
	return istr >> str; // Лошо!
}