OPR_Praktikum/6_Verkehrsmittel/Luftfahrzeug.cpp
2026-04-29 17:08:29 +02:00

15 lines
312 B
C++

#include "Luftfahrzeug.h"
#include "Verkehrsmittel.h"
#include <string>
#include <sstream>
using namespace std;
string Luftfahrzeug::text()
{
stringstream ausgabe;
ausgabe << "Luftfahrzeug - Position x: " << x << "; Position y: " << y << "; max. Höhe: " << max_hoehe;
return ausgabe.str();
}