Add internal api to support C#
[platform/core/api/notification.git] / notification-ex / dbus_sender.h
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef NOTIFICATION_EX_DBUS_SENDER_H_
18 #define NOTIFICATION_EX_DBUS_SENDER_H_
19
20 #include <bundle_cpp.h>
21
22 #include <string>
23 #include <list>
24
25 #include "notification-ex/event_sender_interface.h"
26 #include "notification-ex/ievent_info.h"
27
28 #ifndef EXPORT_API
29 #define EXPORT_API __attribute__((visibility("default")))
30 #endif
31
32 namespace notification {
33
34 class EXPORT_API DBusSender : public IEventSender {
35  public:
36   DBusSender(std::string path);
37   virtual ~DBusSender();
38   void Notify(const IEventInfo& info, std::list<tizen_base::Bundle> serialized,
39       std::string dest_appid = "") override;
40   std::list<tizen_base::Bundle> Request(const IEventInfo& info) override;
41   int RequestNumber(const IEventInfo& info) override;
42
43  private:
44   class Impl;
45   std::unique_ptr<Impl> impl_;
46 };
47
48 }  // namespace notification
49
50 #endif  // NOTIFICATION_EX_DBUS_SENDER_H_