Phosphor
Qt6 / Wayland library suite for window-management tools
 
Loading...
Searching...
No Matches
IVirtualDesktopManager.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2026 fuddlesworth
2// SPDX-License-Identifier: LGPL-2.1-or-later
3
4#pragma once
5
6#include <phosphorengine_export.h>
7
8namespace PhosphorEngine {
9
10class PHOSPHORENGINE_EXPORT IVirtualDesktopManager
11{
12public:
13 virtual ~IVirtualDesktopManager() = default;
14
15 virtual int currentDesktop() const = 0;
16};
17
18} // namespace PhosphorEngine
Definition IVirtualDesktopManager.h:11
virtual int currentDesktop() const =0
Definition EngineTypes.h:13