Hyprland/src/defines.hpp

19 lines
449 B
C++
Raw Normal View History

2022-03-16 20:50:55 +01:00
#include "includes.hpp"
2022-03-27 17:25:20 +02:00
#include "debug/Log.hpp"
2022-03-28 22:31:39 +02:00
#include "helpers/WLListener.hpp"
2022-03-31 17:50:00 +02:00
#include "helpers/Color.hpp"
2023-08-07 13:35:19 +02:00
#include "macros.hpp"
class CWindow;
class CLayerSurface;
/* 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;