1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:17:34 +00:00

UserspaceEmulator: Make Region a top-level class

This commit is contained in:
Andreas Kling 2020-11-16 13:16:38 +01:00
parent de4061ff94
commit 8d9dd4c518
6 changed files with 98 additions and 63 deletions

View file

@ -31,7 +31,7 @@
namespace UserspaceEmulator {
class SharedBufferRegion final : public SoftMMU::Region {
class SharedBufferRegion final : public Region {
public:
static NonnullOwnPtr<SharedBufferRegion> create_with_shbuf_id(u32 base, u32 size, int shbuf_id, u8* shbuf_data);
virtual ~SharedBufferRegion() override;