diff options
-rw-r--r-- | src/wayland.hpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp index 889b722..85ca4f6 100644 --- a/src/wayland.hpp +++ b/src/wayland.hpp @@ -110,46 +110,6 @@ struct output : wayland_proxy<struct wl_output> { // |___/ namespace genivi { -// -// _ __ __ _ _ __ ___ ___ ___ _ __ __ _ ___ ___ -// | '_ \ / _` | '_ ` _ \ / _ \/ __| '_ \ / _` |/ __/ _ \ -// | | | | (_| | | | | | | __/\__ \ |_) | (_| | (_| __/ -// |_| |_|\__,_|_| |_| |_|\___||___/ .__/ \__,_|\___\___| -// |_| -// _ _ __ -// _ __ ___ | |_(_)/ _|_ _ -// | '_ \ / _ \| __| | |_| | | | -// | | | | (_) | |_| | _| |_| | -// |_| |_|\___/ \__|_|_| \__, | -// |___/ -namespace notify { -enum property { - Dimensions, // i.e. configure - DestRect, - SrcRect, - ZOrder, - Vibility, - Opacity, - Layer, - Surface, - Content, - Orientation, - Screen, -}; - -template <typename ObjectT> -struct notifier { - typedef std::function<void(enum property, ObjectT *)> ReceiverT; - - std::vector<ReceiverT> receivers; - - virtual ~notifier() {} - - void add_receiver(ReceiverT); - void notify(enum property) const; -}; -} - struct controller; struct controlled_entity { |