summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-20 18:16:15 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-20 18:16:15 +0100
commit7b32afdcfc92963342020d1dc31205101855c880 (patch)
tree4e575140d8093595c50cbe66592b57bd697d2da6 /Kernel
parentf0915641c58295b8f117d04845d31724aae86ea6 (diff)
downloadserenity-7b32afdcfc92963342020d1dc31205101855c880.zip
Kernel: Oops, forgot to add Alarm.h earlier. Here it is.
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Alarm.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Kernel/Alarm.h b/Kernel/Alarm.h
new file mode 100644
index 0000000000..a724a06ec1
--- /dev/null
+++ b/Kernel/Alarm.h
@@ -0,0 +1,9 @@
+#pragma once
+
+class Alarm {
+public:
+ Alarm() { }
+ virtual ~Alarm() { }
+
+ virtual bool is_ringing() const = 0;
+};