15 lines
339 B
C++
15 lines
339 B
C++
#include "PKW.h"
|
|
#include "Verkehrsmittel.h"
|
|
#include "Radfahrzeug.h"
|
|
#include <sstream>
|
|
|
|
using namespace std;
|
|
|
|
string PKW::text()
|
|
{
|
|
stringstream ausgabe;
|
|
|
|
ausgabe << "PKW - Position x: " << x << "; Position y: " << y << "; Anzahl Räder: " << anzahl_raeder << "; Anzahl Türen: " << anzahl_tueren;
|
|
|
|
return ausgabe.str();
|
|
} |