92c0546a037d08583c75c1166f61bde37eec516b
[senf.git] / PPI / predecl.hh
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
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 namespace ppi {
36
37     class EventDescriptor;
38     template <class EventType=void> class EventImplementation;
39     class EventManager;
40     class RouteBase;
41     class ForwardingRoute;
42     template <class Source, class Target> class Route;
43     class QueueingDiscipline;
44     class ModuleManager;
45
46 #ifndef DOXYGEN
47
48     namespace detail {
49         class EventBindingBase;
50         template <class EvImpl> class EventBinding;
51         template <class EventType> struct EventArgType;
52         class NonForwardingRouteImplementation;
53         class NonForwardingRouteToEventImplementation;
54         class NonForwardingRouteFromEventImplementation;
55         class ForwardForwardingRouteImplementation;
56         class BackwardForwardingRouteImplementation;
57         class ForwardForwardingRouteToEventImplementation;
58         class BackwardForwardingRouteFromEventImplementation;
59         template <class Source, class Target>
60             class RouteImplementation;
61     }
62
63 #endif
64
65     namespace module {       
66         class Module;       
67         namespace detail {
68             template <class Source, class Target> class RouteHelper;
69         }
70         class PassiveJoin;
71         class PriorityJoin;
72     }
73
74     namespace connector {
75         class Connector;
76         class ActiveConnector;
77         class PassiveConnector;
78         class InputConnector;
79         class OutputConnector;
80         class ActiveInput;
81         class ActiveOutput;
82         class PassiveInput;
83         class PassiveOutput;
84     }
85
86 }}
87
88 ///////////////////////////////hh.e////////////////////////////////////////
89 //#include "predecl.cci"
90 //#include "predecl.ct"
91 //#include "predecl.cti"
92 #endif
93
94 \f
95 // Local Variables:
96 // mode: c++
97 // fill-column: 100
98 // comment-column: 40
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // End: