12 lines
262 B
C++
12 lines
262 B
C++
#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();
|
|
};
|