1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:17:35 +00:00

More coding style changes.

This commit is contained in:
Andreas Kling 2018-12-03 00:39:25 +01:00
parent d824442e3e
commit f6e27c2abe
39 changed files with 216 additions and 216 deletions

View file

@ -5,17 +5,17 @@
class IRQHandler {
public:
virtual ~IRQHandler();
virtual void handleIRQ() = 0;
virtual void handle_irq() = 0;
byte irqNumber() const { return m_irqNumber; }
byte irq_number() const { return m_irq_number; }
void enableIRQ();
void disableIRQ();
void enable_irq();
void disable_irq();
protected:
explicit IRQHandler(byte irq);
private:
byte m_irqNumber { 0 };
byte m_irq_number { 0 };
};