summarylogtreecommitdiffstats
path: root/subscribe-event-inline.patch
blob: 13c3720fb74501013a0d7c2fc6156ee7ac34cda0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--- a/src/client/DeviceProxy.cpp
+++ b/src/client/DeviceProxy.cpp
@@ -8942,24 +8942,24 @@
     return ret;
 }

-inline int DeviceProxy::subscribe_event(const std::string &attr_name, EventType event, CallBack *callback)
+int DeviceProxy::subscribe_event(const std::string &attr_name, EventType event, CallBack *callback)
 {
     std::vector<std::string> filt;
     return subscribe_event(attr_name, event, callback, filt, false);
 }

-inline int
+int
     DeviceProxy::subscribe_event(const std::string &attr_name, EventType event, CallBack *callback, bool stateless)
 {
     std::vector<std::string> filt;
     return subscribe_event(attr_name, event, callback, filt, stateless);
 }

-inline int
+int
     DeviceProxy::subscribe_event(const std::string &attr_name, EventType event, int event_queue_size, bool stateless)
 {
     std::vector<std::string> filt;
     return subscribe_event(attr_name, event, event_queue_size, filt, stateless);
 }

 } // namespace Tango