summaryrefslogtreecommitdiffstats
path: root/src/wayland.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-06-09 17:18:28 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit7fdd67a957d9e06016970e823d006a36f4b52c73 (patch)
treea1c50caf9c85ae7e275369bd29d080b4b52e84af /src/wayland.hpp
parenta0eba6dbbf675a45f744fb8d6f4fb3cc1c901713 (diff)
removed all notifier remnants
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.hpp')
-rw-r--r--src/wayland.hpp40
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 {