X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2Fpredecl.hh;h=81094eb75b3fc12068f455f87fc1b75dd7f8ad5e;hb=92f8630b75f3ef50e73c48cde58645dcd1534e27;hp=287cd3d8e4ec919fc576a582172d8d0c8ce513c6;hpb=f73fa16ed5abdce272ac77f8b8b9ef2b9922c266;p=senf.git diff --git a/PPI/predecl.hh b/PPI/predecl.hh index 287cd3d..81094eb 100644 --- a/PPI/predecl.hh +++ b/PPI/predecl.hh @@ -1,8 +1,8 @@ // $Id$ // -// Copyright (C) 2007 -// Fraunhofer Institute for Open Communication Systems (FOKUS) -// Competence Center NETwork research (NET), St. Augustin, GERMANY +// 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 @@ -23,8 +23,8 @@ /** \file \brief predecl public header */ -#ifndef HH_predecl_ -#define HH_predecl_ 1 +#ifndef HH_SENF_PPI_predecl_ +#define HH_SENF_PPI_predecl_ 1 // Custom includes @@ -32,6 +32,9 @@ ///////////////////////////////hh.p//////////////////////////////////////// namespace senf { + + class Packet; + namespace ppi { class EventDescriptor; @@ -69,6 +72,7 @@ namespace ppi { } class PassiveJoin; class PriorityJoin; + class ActiveDuplicator; } namespace connector { @@ -77,10 +81,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 + } }}