removed all notifier remnants
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>
Fri, 9 Jun 2017 15:18:28 +0000 (17:18 +0200)
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 8 Aug 2017 15:24:00 +0000 (17:24 +0200)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
src/wayland.hpp

index 889b722..85ca4f6 100644 (file)
@@ -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 {