From: Loïc Collignon Date: Wed, 2 Jan 2019 16:44:27 +0000 (+0100) Subject: Added a new C++ API X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=138e2fe9718c1db4302848bef4030687f4fe1191 Added a new C++ API You can create an API by inheriting a base class and overring the methods you want. Change-Id: I62fa5ee8f347cd4d7baa7df39c0fcd6c83c4c34e Signed-off-by: Loïc Collignon --- diff --git a/include/afb/c++/binding b/include/afb/c++/binding index ac4620a8..5858dff7 100644 --- a/include/afb/c++/binding +++ b/include/afb/c++/binding @@ -17,4 +17,3 @@ #pragma once #include "binding-wrap.hpp" #include "binding-object.hpp" - diff --git a/include/afb/c++/binding-object.hpp b/include/afb/c++/binding-object.hpp index 042db615..9a9e5b6e 100644 --- a/include/afb/c++/binding-object.hpp +++ b/include/afb/c++/binding-object.hpp @@ -49,7 +49,7 @@ namespace afb /** * @brief Default Api's traits implementation. - * @tparam TApi The Api's concrete class. + * @tparam TApi The Api's concrete class. */ template struct ApiTraits