1 /*
2 *
systemuhr.h
3 *
4 * Autor: H.Drachenfels
5 * Erstellt am: 12.8.2020
6 */
7
8 #ifndef SYSTEMUHR_H
9 #define SYSTEMUHR_H
10
11 #include "uhr.h"
12
13 class systemuhr final : public uhr
14 {
15 public:
16 virtual void ablesen(unsigned& s, unsigned& m) const override;
17 };
18
19 #endif
20