1 /* 2 * ortstermin.cpp 3 * 4 * Beispielprogramm Vererbung. 5 * 6 * Autor: H.Drachenfels 7 * Erstellt am: 16.5.2024 8 */
9 #include "ortstermin.h"
10 #include <stdexcept>
11
12 ortstermin::ortstermin(const std::string &wo, const datum &wann, const std::string &was)
13 : termin(wann, was), wo(wo)
14 {
15 if (wo.empty())
16 {
17 throw std::invalid_argument("ungueltiger Termin");
18 }
19 }
20
21 std::string ortstermin::get_ort() const
22 {
23 return this->wo;
24 }
25