diff options
| author | 2023-03-29 09:11:34 -0400 | |
|---|---|---|
| committer | 2023-03-29 09:11:34 -0400 | |
| commit | 8bdc51b620f0778f53d76ad9368da97a9213d631 (patch) | |
| tree | 2a71c944643cda0ab019c22d1d46d58552f002ff /src/core/frontend/applets/applet.h | |
| parent | Merge pull request #10003 from german77/disconnect (diff) | |
| parent | qt: implement RequestExit for applets (diff) | |
| download | yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.gz yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.xz yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.zip | |
Merge pull request #9505 from liamwhite/request-exit
applets: implement RequestExit
Diffstat (limited to 'src/core/frontend/applets/applet.h')
| -rw-r--r-- | src/core/frontend/applets/applet.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/frontend/applets/applet.h b/src/core/frontend/applets/applet.h new file mode 100644 index 000000000..77fffe306 --- /dev/null +++ b/src/core/frontend/applets/applet.h | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | // SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | namespace Core::Frontend { | ||
| 7 | |||
| 8 | class Applet { | ||
| 9 | public: | ||
| 10 | virtual ~Applet() = default; | ||
| 11 | virtual void Close() const = 0; | ||
| 12 | }; | ||
| 13 | |||
| 14 | } // namespace Core::Frontend | ||