mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 11:25:59 +01:00
f044e4c951
* move monitors to sp * XD
26 lines
670 B
C++
26 lines
670 B
C++
#pragma once
|
|
#include "../macros.hpp"
|
|
class CWorkspace;
|
|
class CWindow;
|
|
class CLayerSurface;
|
|
class CMonitor;
|
|
|
|
/* Shared pointer to a workspace */
|
|
typedef SP<CWorkspace> PHLWORKSPACE;
|
|
/* Weak pointer to a workspace */
|
|
typedef WP<CWorkspace> PHLWORKSPACEREF;
|
|
|
|
/* Shared pointer to a window */
|
|
typedef SP<CWindow> PHLWINDOW;
|
|
/* Weak pointer to a window */
|
|
typedef WP<CWindow> PHLWINDOWREF;
|
|
|
|
/* Shared pointer to a layer surface */
|
|
typedef SP<CLayerSurface> PHLLS;
|
|
/* Weak pointer to a layer surface */
|
|
typedef WP<CLayerSurface> PHLLSREF;
|
|
|
|
/* Shared pointer to a monitor */
|
|
typedef SP<CMonitor> PHLMONITOR;
|
|
/* Weak pointer to a monitor */
|
|
typedef WP<CMonitor> PHLMONITORREF;
|