0e9663128332cc63f8037c73b4e086224989ff76
[senf.git] / senf / 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         struct DisableStandardConnect;
65     }
66
67 #endif
68
69     namespace module {
70         class Module;
71         namespace detail {
72             template <class Source, class Target> class RouteHelper;
73         }
74         class PassiveJoin;
75         class PriorityJoin;
76         class ActiveDuplicator;
77     }
78
79     namespace connector {
80         class Connector;
81         class ActiveConnector;
82         class PassiveConnector;
83         class InputConnector;
84         class OutputConnector;
85         class GenericActiveInput;
86         class GenericActiveOutput;
87         class GenericPassiveInput;
88         class GenericPassiveOutput;
89         template <class PacketType=Packet> class PassiveInput;
90         template <class PacketType=Packet> class PassiveOutput;
91         template <class PacketType=Packet> class ActiveInput;
92         template <class PacketType=Packet> class ActiveOutput;
93
94         class Jack;
95
96 #ifndef DOXYGEN
97
98         namespace detail {
99             template <class Self, class PacketType> class TypedInputMixin;
100             template <class Self, class PacketType> class TypedOutputMixin;
101         }
102
103 #endif
104
105     }
106
107 }}
108
109 ///////////////////////////////hh.e////////////////////////////////////////
110 //#include "predecl.cci"
111 //#include "predecl.ct"
112 //#include "predecl.cti"
113 #endif
114
115 \f
116 // Local Variables:
117 // mode: c++
118 // fill-column: 100
119 // comment-column: 40
120 // c-file-style: "senf"
121 // indent-tabs-mode: nil
122 // ispell-local-dictionary: "american"
123 // compile-command: "scons -u test"
124 // End: