summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhyunho <hhstark.kang@samsung.com>2019-04-30 09:52:33 +0900
committerhyunho <hhstark.kang@samsung.com>2019-04-30 09:52:33 +0900
commit2b3657c705bf7b532473500f6d03f90cb8da8202 (patch)
tree5a76e307e514fb920db2f0177803c3b72a2930ef
parent9aad11ef8c5163a77575c2368499289c72b31d2f (diff)
downloadnotification-2b3657c705bf7b532473500f6d03f90cb8da8202.tar.gz
notification-2b3657c705bf7b532473500f6d03f90cb8da8202.tar.bz2
notification-2b3657c705bf7b532473500f6d03f90cb8da8202.zip
Fix non-virtual destructor issue
Change-Id: I4258e9a6a2733a28f5fc37de8c002f21efb1302b Signed-off-by: hyunho <hhstark.kang@samsung.com>
-rw-r--r--notification-ex/event_sender_interface.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/notification-ex/event_sender_interface.h b/notification-ex/event_sender_interface.h
index 3acbe0c..8390983 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<Bundle> serialized,
std::string dest_appid = "") = 0;
virtual std::list<Bundle> Request(const IEventInfo &info) = 0;