PPI: Add missing TargetDgramWriter doku
[senf.git] / PPI / predecl.hh
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief predecl public header */
25
26 #ifndef HH_SENF_PPI_predecl_
27 #define HH_SENF_PPI_predecl_ 1
28
29 // Custom includes
30
31 //#include "predecl.mpp"
32 ///////////////////////////////hh.p////////////////////////////////////////
33
34 namespace senf {
35
36     class Packet;
37
38 namespace ppi {
39
40     class EventDescriptor;
41     template <class EventType=void> class EventImplementation;
42     class EventManager;
43     class RouteBase;
44     class ForwardingRoute;
45     template <class Source, class Target> class Route;
46     class QueueingDiscipline;
47     class ModuleManager;
48
49 #ifndef DOXYGEN
50
51     namespace detail {
52         class EventBindingBase;
53         template <class EvImpl> class EventBinding;
54         template <class EventType> struct EventArgType;
55         class NonForwardingRouteImplementation;
56         class NonForwardingRouteToEventImplementation;
57         class NonForwardingRouteFromEventImplementation;
58         class ForwardForwardingRouteImplementation;
59         class BackwardForwardingRouteImplementation;
60         class ForwardForwardingRouteToEventImplementation;
61         class BackwardForwardingRouteFromEventImplementation;
62         template <class Source, class Target>
63             class RouteImplementation;
64     }
65
66 #endif
67
68     namespace module {       
69         class Module;       
70         namespace detail {
71             template <class Source, class Target> class RouteHelper;
72         }
73         class PassiveJoin;
74         class PriorityJoin;
75         class ActiveDuplicator;
76     }
77
78     namespace connector {
79         class Connector;
80         class ActiveConnector;
81         class PassiveConnector;
82         class InputConnector;
83         class OutputConnector;
84         class GenericActiveInput;
85         class GenericActiveOutput;
86         class GenericPassiveInput;
87         class GenericPassiveOutput;
88         template <class PacketType=Packet> class PassiveInput;
89         template <class PacketType=Packet> class PassiveOutput;
90         template <class PacketType=Packet> class ActiveInput;
91         template <class PacketType=Packet> class ActiveOutput;
92
93         class Jack;
94
95 #ifndef DOXYGEN
96
97         namespace detail {
98             template <class Self, class PacketType> class TypedInputMixin;
99             template <class Self, class PacketType> class TypedOutputMixin;
100         }
101
102 #endif
103
104     }
105
106 }}
107
108 ///////////////////////////////hh.e////////////////////////////////////////
109 //#include "predecl.cci"
110 //#include "predecl.ct"
111 //#include "predecl.cti"
112 #endif
113
114 \f
115 // Local Variables:
116 // mode: c++
117 // fill-column: 100
118 // comment-column: 40
119 // c-file-style: "senf"
120 // indent-tabs-mode: nil
121 // ispell-local-dictionary: "american"
122 // compile-command: "scons -u test"
123 // End: