Kernel: Oops, forgot to add Alarm.h earlier. Here it is.

This commit is contained in:
Andreas Kling 2019-03-20 18:16:15 +01:00
parent f0915641c5
commit 7b32afdcfc
Notes: sideshowbarker 2024-07-19 14:59:18 +09:00

9
Kernel/Alarm.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
class Alarm {
public:
Alarm() { }
virtual ~Alarm() { }
virtual bool is_ringing() const = 0;
};