X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2FEvents.cti;h=b1bd1fcff66ea010581c9233aab1cfd96a4a048c;hb=05fab45b5f96c457d3c6b359f66ce1506c6ad510;hp=428e2cdea4dc8e6cc00b9e423e556d4802ca02ce;hpb=7465ea4f6d3d54622bd783106cf8b60d5f133343;p=senf.git diff --git a/PPI/Events.cti b/PPI/Events.cti index 428e2cd..b1bd1fc 100644 --- a/PPI/Events.cti +++ b/PPI/Events.cti @@ -40,7 +40,7 @@ template prefix_ void senf::ppi::EventImplementationHelper::callback(EventArg event, - boost::posix_time::ptime time) + ClockService::clock_type time) { binding().callback(event,time); } @@ -70,7 +70,7 @@ senf::ppi::EventImplementationHelper::binding() template prefix_ void -senf::ppi::EventImplementationHelper::callback(boost::posix_time::ptime time) +senf::ppi::EventImplementationHelper::callback(ClockService::clock_type time) { binding().callback(time); } @@ -95,6 +95,20 @@ senf::ppi::EventImplementationHelper::binding() /////////////////////////////////////////////////////////////////////////// // senf::ppi::EventImplementation +template +prefix_ senf::ppi::module::Module & senf::ppi::EventImplementation::module() + const +{ + return binding_->module(); +} + +template +prefix_ senf::ppi::EventManager & senf::ppi::EventImplementation::manager() + const +{ + return binding_->manager(); +} + //////////////////////////////////////// // protected members