X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2Fdetail%2FEventBinding.cti;h=4e2db74e7f3e56e51266db786f23f735d9f5ee1b;hb=e7ac3fef18af5ec0076f02290ad439a9d6e05491;hp=b59906d5e169e202ee1fb76867b8459e787a376f;hpb=b8a3977542aaf217ac472e5266abd0fcffb4f95f;p=senf.git diff --git a/PPI/detail/EventBinding.cti b/PPI/detail/EventBinding.cti index b59906d..4e2db74 100644 --- a/PPI/detail/EventBinding.cti +++ b/PPI/detail/EventBinding.cti @@ -1,8 +1,8 @@ // $Id$ // // Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY // Stefan Bund // // This program is free software; you can redistribute it and/or modify @@ -26,6 +26,7 @@ //#include "EventBinding.ih" // Custom includes +#include "../EventManager.hh" #define prefix_ inline ///////////////////////////////cti.p/////////////////////////////////////// @@ -45,7 +46,7 @@ senf::ppi::detail::EventBindingHelper::callback(EventArg event, template prefix_ void senf::ppi::detail::EventBindingHelper::callback(EventArg event) { - callback(event, ClockService::now()); + callback(event, self().manager().now()); } //////////////////////////////////////// @@ -71,7 +72,7 @@ senf::ppi::detail::EventBindingHelper::callback(ClockService::clock_t template prefix_ void senf::ppi::detail::EventBindingHelper::callback() { - callback(ClockService::now()); + callback(self().manager().now()); } ////////////////////////////////////////