mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-03-16 20:44:38 +00:00
16 lines
281 B
C++
16 lines
281 B
C++
#pragma once
|
|
|
|
#include <mesosphere/interfaces/IWork.hpp>
|
|
#include <mesosphere/interfaces/IInterruptible.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
class IInterruptibleWork : public IInterruptible, public IWork {
|
|
public:
|
|
|
|
virtual IWork *HandleInterrupt(uint interruptId) override;
|
|
};
|
|
|
|
}
|