1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 16:05:07 +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;
};