1 /* 2 * ortstermin.cpp 3 * 4 * Beispielprogramm Vererbung. 5 * 6 * Autor: H.Drachenfels 7 * Erstellt am: 10.3.2019 8 */
9 #include "ortstermin.h"
10
11 ortstermin::ortstermin(const std::string &t, const datum &d, const std::string &s)
12 : termin(d, s), wo(t)
13 { }
14
15 std::string ortstermin::get_ort() const
16 {
17 return this->wo;
18 }
19