#include "Ware.h" std::ostream &operator<<(std::ostream &out, const Ware &ware) { out << "Name: " << ware.getBezeichnung() << ", SN: " << ware.getSeriennummer() << ", Gewicht: " << ware.getGewicht() << ", EK: " << ware.getEinkaufspreis() << ", VK: " << ware.getVerkaufspreis(); return out; }