1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-13 17:11:00 +00:00
serenity/Kernel/Alarm.h

9 lines
122 B
C++

#pragma once
class Alarm {
public:
Alarm() { }
virtual ~Alarm() { }
virtual bool is_ringing() const = 0;
};