#include "Radfahrzeug.h" #include using namespace std; string Radfahrzeug::text() { stringstream ausgabe; ausgabe << "Radfahrzeug - Position x: " << x << "; Position y: " << y << "; Anzahl Räder: " << anzahl_raeder; return ausgabe.str(); }