diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-10-15 17:45:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2019-10-15 17:45:29 +0000 |
commit | 266c9b1cefb3e33c825e6a994b8bb481654d86d1 (patch) | |
tree | afead1d5151d6ba5031740ac24ae129632744ecb /src/plugins/afb/include/AFBEventImpl.h | |
parent | c1de719af7bdae425f2e42dd3e0642550a8cd6b6 (diff) | |
parent | 62f552fe640df18320dd3afb1f141e8a1aedf2f4 (diff) |
Merge "Switch to appcontroller library" into halibuthalibut_8.0.3halibut/8.0.38.0.3
Diffstat (limited to 'src/plugins/afb/include/AFBEventImpl.h')
-rw-r--r-- | src/plugins/afb/include/AFBEventImpl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/afb/include/AFBEventImpl.h b/src/plugins/afb/include/AFBEventImpl.h index 2dda513..2d06dc9 100644 --- a/src/plugins/afb/include/AFBEventImpl.h +++ b/src/plugins/afb/include/AFBEventImpl.h @@ -36,7 +36,7 @@ namespace afb { class AFBEventImpl : public vshlcapabilities::common::interfaces::IAFBApi::IAFBEvent { public: static unique_ptr<AFBEventImpl> - create(shared_ptr<vshlcapabilities::common::interfaces::ILogger> logger, AFB_ApiT api, + create(shared_ptr<vshlcapabilities::common::interfaces::ILogger> logger, afb_api_t api, const string &eventName); // Destructor @@ -52,14 +52,14 @@ public: private: AFBEventImpl(shared_ptr<vshlcapabilities::common::interfaces::ILogger> logger, - AFB_ApiT api, const string &eventName); + afb_api_t api, const string &eventName); // Make the event. This is a lazy make that happens // usually during the subscribe stage. void makeEventIfNeccessary(); // Binding API reference - AFB_ApiT mAfbApi; + afb_api_t mAfbApi; // AFB Event afb_event_t mAfbEvent; |