X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2Fdetail%2FEventBinding.cti;h=09fc719314297ead27270fbdef8544accec049ca;hb=b89e3166f7680755683dccee5e48cb3a820185c0;hp=b59906d5e169e202ee1fb76867b8459e787a376f;hpb=b8a3977542aaf217ac472e5266abd0fcffb4f95f;p=senf.git diff --git a/PPI/detail/EventBinding.cti b/PPI/detail/EventBinding.cti index b59906d..09fc719 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) +// Copyright (C) 2007 +// 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()); } ////////////////////////////////////////