aboutsummaryrefslogtreecommitdiff
path: root/week12/Exercise1/ScientificPaper.cpp
blob: a530bfcf2ce5854523596c59d5a187a1de779bfe (plain) (blame)
1
2
3
4
5
#include "ScientificPaper.h"

std::ostream& operator<<(std::ostream& ostr, const ScientificPaper& other) {
	return ostr << (Publication)other << std::endl << (TextDocument)other;
}