X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2Fpredecl.hh;h=703007249329ba9c85e9dcc830d4bf2e8f983d5e;hb=d8c2d9d478b8808e5b76e4688aea4f840b6a1df7;hp=8fb57ddfc7db72c30e49413c05d2365d3808d5dc;hpb=69535909437d04c0df8f95bfb242db4f36fda12d;p=senf.git diff --git a/PPI/predecl.hh b/PPI/predecl.hh index 8fb57dd..7030072 100644 --- a/PPI/predecl.hh +++ b/PPI/predecl.hh @@ -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 @@ -32,6 +32,9 @@ ///////////////////////////////hh.p//////////////////////////////////////// namespace senf { + + class Packet; + namespace ppi { class EventDescriptor; @@ -43,6 +46,8 @@ namespace ppi { class QueueingDiscipline; class ModuleManager; +#ifndef DOXYGEN + namespace detail { class EventBindingBase; template class EventBinding; @@ -58,6 +63,8 @@ namespace ppi { class RouteImplementation; } +#endif + namespace module { class Module; namespace detail { @@ -73,10 +80,24 @@ namespace ppi { class PassiveConnector; class InputConnector; class OutputConnector; - class ActiveInput; - class ActiveOutput; - class PassiveInput; - class PassiveOutput; + class GenericActiveInput; + class GenericActiveOutput; + class GenericPassiveInput; + class GenericPassiveOutput; + template class PassiveInput; + template class PassiveOutput; + template class ActiveInput; + template class ActiveOutput; + +#ifndef DOXYGEN + + namespace detail { + template class TypedInputMixin; + template class TypedOutputMixin; + } + +#endif + } }}