#pragma once #include "Verkehrsmittel.h" class Luftfahrzeug : public Verkehrsmittel{ private: int maxFlughöhe; public: Luftfahrzeug (int maxFlughöhe){ this->maxFlughöhe = maxFlughöhe; }; std::string text(); };