From: hyunho Date: Tue, 30 Apr 2019 00:52:33 +0000 (+0900) Subject: Fix non-virtual destructor issue X-Git-Tag: submit/tizen/20190430.011338~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b3657c705bf7b532473500f6d03f90cb8da8202;p=platform%2Fcore%2Fapi%2Fnotification.git Fix non-virtual destructor issue Change-Id: I4258e9a6a2733a28f5fc37de8c002f21efb1302b Signed-off-by: hyunho --- diff --git a/notification-ex/event_sender_interface.h b/notification-ex/event_sender_interface.h index 3acbe0ca..83909834 100644 --- a/notification-ex/event_sender_interface.h +++ b/notification-ex/event_sender_interface.h @@ -30,6 +30,7 @@ namespace notification { class EXPORT_API IEventSender { public: + virtual ~IEventSender() = default; virtual void Notify(const IEventInfo& info, std::list serialized, std::string dest_appid = "") = 0; virtual std::list Request(const IEventInfo &info) = 0;