diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-23 23:38:42 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-23 23:38:42 +0200 |
commit | 02a7768e7ca44cd40c06cbae887d828a8601e0f7 (patch) | |
tree | 9651f04b65d6c0308ce05354ebf339ca83f8e1cb /src/window/xcb.h | |
parent | 5f2ca9a01d2e493e222bead7222613e050871928 (diff) |
c++: Exposing work towards an exposed iface
Diffstat (limited to 'src/window/xcb.h')
-rw-r--r-- | src/window/xcb.h | 16 |
1 files changed, 8 insertions, 8 deletions
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<input_stream> async_notifier; - conveyor_sink async_conveyor; + own<input_stream> async_notifier_; + conveyor_sink async_conveyor_; - std::map<xcb_window_t, window *> windows; + std::map<xcb_window_t, window *> windows_; - std::vector<xcb_generic_event_t *> pending_events; + std::vector<xcb_generic_event_t *> pending_events_; public: device(::Display *display, int screen, xcb_connection_t *xcb_connection, xcb_screen_t *xcb_screen, own<input_stream> && an); |