Use std::function
Replace CallableHolder with std::function. No need to re-invent
the wheel.
Change-Id: I2647a802237dba4a48187718f0d3da59e97575d7
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/manager.hpp b/manager.hpp
index c1137a4..9d83ee8 100644
--- a/manager.hpp
+++ b/manager.hpp
@@ -81,7 +81,7 @@
using EventInfo = std::tuple <
std::vector<details::EventBasePtr>,
- std::vector<details::ActionBasePtr >>;
+ std::vector<details::Action >>;
/** @brief Start processing DBus messages. */
void run() noexcept;