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