1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:47:45 +00:00

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

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;
};