X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2FEvents.hh;h=39e9d486cff61a5d86b90aada56961fd201703b6;hb=d5a72d0b3f6fee56dba6de1c54cafb448ebe3457;hp=e05fb5c7be79a21e47750b6451e9cf3dd2ceec0a;hpb=e8b91aa6a817af6d9a3714e7b66be6c0d6b0a4e5;p=senf.git diff --git a/PPI/Events.hh b/PPI/Events.hh index e05fb5c..39e9d48 100644 --- a/PPI/Events.hh +++ b/PPI/Events.hh @@ -1,6 +1,8 @@ -// Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) +// $Id$ +// +// 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 @@ -21,12 +23,12 @@ /** \file \brief Events public header */ -#ifndef HH_Events_ -#define HH_Events_ 1 +#ifndef HH_SENF_PPI_Events_ +#define HH_SENF_PPI_Events_ 1 // Custom includes #include -#include "Scheduler/ClockService.hh" +#include "../Scheduler/ClockService.hh" #include "predecl.hh" //#include "Events.mpp" @@ -44,7 +46,8 @@ namespace ppi { \section event_impl Implementing Events All events are derived from EventImplementation which is based on EventDescriptor. - \see EventImplementation + \see EventImplementation \n + \ref ppi_events */ // Implementation: The concrete EventDescriptor implementation will need to set things up so @@ -58,6 +61,8 @@ namespace ppi { /** \brief Generic event interface base-class The EventDescriptor base-class provides an interface to control events. + + \see \ref ppi_events */ class EventDescriptor { @@ -82,6 +87,7 @@ namespace ppi { void registerRoute(ForwardingRoute & route); bool enabled_; + bool throttled_; typedef std::vector Routes; Routes routes_;