OPR-PR/6_Verkehrsmittel/Luftfahrzeug.h

9 lines
160 B
C++

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