summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/scope_acquire_window_context.h
blob: 2d9f6e82529ff0a237af467ee7e6e9b5d284772b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2019 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "common/common_types.h"

namespace Core::Frontend {

class EmuWindow;

/// Helper class to acquire/release window context within a given scope
class ScopeAcquireWindowContext : NonCopyable {
public:
    explicit ScopeAcquireWindowContext(Core::Frontend::EmuWindow& window);
    ~ScopeAcquireWindowContext();

private:
    Core::Frontend::EmuWindow& emu_window;
};

} // namespace Core::Frontend