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

std::ostream& operator<<(std::ostream& ostr, const Publication& other) {
	return ostr << "From " << other.authors << " in " << other.journal;
}