mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 13:26:00 +01:00
bca7804bb6
* Window storage rework - part 1 * format * remove useless include * fix pch * format * fix crash in dwindle * fix vram leak * prefer .expired() for bool checks
12 lines
280 B
C++
12 lines
280 B
C++
#include "includes.hpp"
|
|
#include "debug/Log.hpp"
|
|
#include "helpers/WLListener.hpp"
|
|
#include "helpers/Color.hpp"
|
|
#include "macros.hpp"
|
|
|
|
class CWindow;
|
|
|
|
/* Shared pointer to a window */
|
|
typedef SP<CWindow> PHLWINDOW;
|
|
/* Weak pointer to a window */
|
|
typedef WP<CWindow> PHLWINDOWREF;
|