2026-04-29 17:08:29 +02:00

13 lines
270 B
C++

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