mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-05-19 08:30:22 -07:00
14 lines
293 B
C++
14 lines
293 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include "../protocols/ToplevelExport.hpp"
|
|
|
|
class CProtocolManager {
|
|
public:
|
|
CProtocolManager();
|
|
|
|
std::unique_ptr<CToplevelExportProtocolManager> m_pToplevelExportProtocolManager;
|
|
};
|
|
|
|
inline std::unique_ptr<CProtocolManager> g_pProtocolManager;
|