From 02a7768e7ca44cd40c06cbae887d828a8601e0f7 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Tue, 23 May 2023 23:38:42 +0200 Subject: c++: Exposing work towards an exposed iface --- src/window/xcb.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/window/xcb.h') diff --git a/src/window/xcb.h b/src/window/xcb.h index 61ed509..430ea28 100644 --- a/src/window/xcb.h +++ b/src/window/xcb.h @@ -8,18 +8,18 @@ namespace saw { class window; class device { private: - ::Display *display; - int screen; + ::Display *display_; + int screen_; - xcb_connection_t *xcb_connection; - xcb_screen_t *xcb_screen; + xcb_connection_t *xcb_connection_; + xcb_screen_t *xcb_screen_; - own async_notifier; - conveyor_sink async_conveyor; + own async_notifier_; + conveyor_sink async_conveyor_; - std::map windows; + std::map windows_; - std::vector pending_events; + std::vector pending_events_; public: device(::Display *display, int screen, xcb_connection_t *xcb_connection, xcb_screen_t *xcb_screen, own && an); -- cgit v1.2.3