ed2c8d873282f1106900dc5dfd9d079acf39dad9
[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_predecl_
27 #define HH_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     }
76
77     namespace connector {
78         class Connector;
79         class ActiveConnector;
80         class PassiveConnector;
81         class InputConnector;
82         class OutputConnector;
83         class GenericActiveInput;
84         class GenericActiveOutput;
85         class GenericPassiveInput;
86         class GenericPassiveOutput;
87         template <class PacketType=Packet> class PassiveInput;
88         template <class PacketType=Packet> class PassiveOutput;
89         template <class PacketType=Packet> class ActiveInput;
90         template <class PacketType=Packet> class ActiveOutput;
91
92 #ifndef DOXYGEN
93
94         namespace detail {
95             template <class Self, class PacketType> class TypedInputMixin;
96             template <class Self, class PacketType> class TypedOutputMixin;
97         }
98
99 #endif
100
101     }
102
103 }}
104
105 ///////////////////////////////hh.e////////////////////////////////////////
106 //#include "predecl.cci"
107 //#include "predecl.ct"
108 //#include "predecl.cti"
109 #endif
110
111 \f
112 // Local Variables:
113 // mode: c++
114 // fill-column: 100
115 // comment-column: 40
116 // c-file-style: "senf"
117 // indent-tabs-mode: nil
118 // ispell-local-dictionary: "american"
119 // compile-command: "scons -u test"
120 // End: