1 /* 2 * ortstermin.h 3 * 4 * Beispielprogramm Vererbung. 5 * 6 * Autor: H.Drachenfels 7 * Erstellt am: 10.2.2021 8 */
9 #ifndef ORTSTERMIN_H
10 #define ORTSTERMIN_H
11
12 #include "termin.h"
13 #include <string>
14
15 class ortstermin final : public termin
16 {
17 private:
18 std::string wo;
19 public:
20 ortstermin(const std::string&, const datum&, const std::string&);
21 // ~ortstermin() = default;
22 // ortstermin(const ortstermin&) = delete;
23 // ortstermin& operator=(const ortstermin&) = delete;
24 // ortstermin(ortstermin&&) = delete;
25 // ortstermin& operator=(ortstermin&&) = delete;
26 std::string get_ort() const;
27 };
28
29 #endif
30