13 lines
290 B
C++
13 lines
290 B
C++
#include "Luftfahrzeug.h"
|
|
#include "Verkehrsmittel.h"
|
|
#include <string>
|
|
#include <sstream>
|
|
|
|
string Luftfahrzeug::text()
|
|
{
|
|
stringstream ausgabe;
|
|
|
|
ausgabe << "Luftfahrzeug - Position x: " << x << "; Position y: " << y << "; max. Höhe: " << max_hoehe;
|
|
|
|
return ausgabe.str();
|
|
} |