Fix boot auto unit tests for Boost V1.34 compatibility
[senf.git] / PPI / Events.cti
index 428e2cd..b1bd1fc 100644 (file)
@@ -40,7 +40,7 @@
 template <class EventType, class Self>
 prefix_ void
 senf::ppi::EventImplementationHelper<EventType,Self>::callback(EventArg event,
-                                                               boost::posix_time::ptime time)
+                                                               ClockService::clock_type time)
 {
     binding().callback(event,time);
 }
@@ -70,7 +70,7 @@ senf::ppi::EventImplementationHelper<EventType,Self>::binding()
 
 template <class Self>
 prefix_ void
-senf::ppi::EventImplementationHelper<void,Self>::callback(boost::posix_time::ptime time)
+senf::ppi::EventImplementationHelper<void,Self>::callback(ClockService::clock_type time)
 {
     binding().callback(time);
 }
@@ -95,6 +95,20 @@ senf::ppi::EventImplementationHelper<void,Self>::binding()
 ///////////////////////////////////////////////////////////////////////////
 // senf::ppi::EventImplementation<EventType>
 
+template <class EventType>
+prefix_ senf::ppi::module::Module & senf::ppi::EventImplementation<EventType>::module()
+    const
+{
+    return binding_->module();
+}
+
+template <class EventType>
+prefix_ senf::ppi::EventManager & senf::ppi::EventImplementation<EventType>::manager()
+    const
+{
+    return binding_->manager();
+}
+
 ////////////////////////////////////////
 // protected members