SCIRun  5.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
NetworkFwd.h
Go to the documentation of this file.
1 /*
2  For more information, please see: http://software.sci.utah.edu
3 
4  The MIT License
5 
6  Copyright (c) 2012 Scientific Computing and Imaging Institute,
7  University of Utah.
8 
9 
10  Permission is hereby granted, free of charge, to any person obtaining a
11  copy of this software and associated documentation files (the "Software"),
12  to deal in the Software without restriction, including without limitation
13  the rights to use, copy, modify, merge, publish, distribute, sublicense,
14  and/or sell copies of the Software, and to permit persons to whom the
15  Software is furnished to do so, subject to the following conditions:
16 
17  The above copyright notice and this permission notice shall be included
18  in all copies or substantial portions of the Software.
19 
20  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26  DEALINGS IN THE SOFTWARE.
27 */
28 
29 /// @todo Documentation Dataflow/Network/NetworkFwd.h
30 
31 
32 #ifndef DATAFLOW_NETWORK_NETWORK_FWD_H
33 #define DATAFLOW_NETWORK_NETWORK_FWD_H
34 
35 #include <boost/shared_ptr.hpp>
36 #include <map>
37 
38 namespace SCIRun {
39 namespace Dataflow {
40 namespace Networks {
41 
42 class NetworkInterface;
43 class ModuleInterface;
44 class ModuleDisplayInterface;
45 class ModuleStateInterface;
46 class ModuleStateInterfaceFactory;
47 class PortInterface;
48 struct PortId;
49 class PortDescriptionInterface;
50 class Connection;
51 class InputPortInterface;
52 class OutputPortInterface;
53 struct ConnectionId;
54 struct ModuleId;
55 struct ModuleDescription;
56 struct ModuleLookupInfo;
57 class ModuleFactory;
58 class ModuleInfoProvider;
59 struct ConnectionDescription;
60 class DatatypeSourceInterface;
61 class DatatypeSinkInterface;
62 class ExecutableLookup;
63 class ExecutableObject;
64 class NetworkXML;
65 struct ModulePositions;
66 /// @todo: rename this
67 struct NetworkFile;
68 class NetworkGlobalSettings;
69 class ModulePositionEditor;
70 class ConnectionMakerService;
72 
73 typedef boost::shared_ptr<NetworkInterface> NetworkHandle;
74 typedef boost::shared_ptr<ModuleInterface> ModuleHandle;
75 typedef boost::shared_ptr<ModuleStateInterface> ModuleStateHandle;
76 typedef boost::shared_ptr<ModuleStateInterfaceFactory> ModuleStateFactoryHandle;
77 typedef boost::shared_ptr<PortInterface> PortHandle;
78 typedef boost::shared_ptr<Connection> ConnectionHandle;
79 typedef boost::shared_ptr<InputPortInterface> InputPortHandle;
80 typedef boost::shared_ptr<OutputPortInterface> OutputPortHandle;
81 typedef boost::shared_ptr<ModuleFactory> ModuleFactoryHandle;
82 typedef boost::shared_ptr<DatatypeSinkInterface> DatatypeSinkInterfaceHandle;
83 typedef boost::shared_ptr<DatatypeSourceInterface> DatatypeSourceInterfaceHandle;
84 typedef boost::shared_ptr<NetworkXML> NetworkXMLHandle;
85 typedef boost::shared_ptr<ModulePositions> ModulePositionsHandle;
86 typedef boost::shared_ptr<NetworkFile> NetworkFileHandle;
87 
88 typedef std::map<std::string, std::map<std::string, std::map<std::string, ModuleDescription>>> ModuleDescriptionMap;
89 
90 }}}
91 
92 
93 #endif
boost::shared_ptr< ModuleStateInterface > ModuleStateHandle
Definition: NetworkFwd.h:75
boost::shared_ptr< NetworkXML > NetworkXMLHandle
Definition: NetworkFwd.h:84
boost::shared_ptr< NetworkFile > NetworkFileHandle
Definition: NetworkFwd.h:86
boost::shared_ptr< OutputPortInterface > OutputPortHandle
Definition: NetworkFwd.h:80
boost::shared_ptr< ModuleStateInterfaceFactory > ModuleStateFactoryHandle
Definition: NetworkFwd.h:76
boost::shared_ptr< InputPortInterface > InputPortHandle
Definition: NetworkFwd.h:79
boost::shared_ptr< ModulePositions > ModulePositionsHandle
Definition: NetworkFwd.h:85
std::map< std::string, std::map< std::string, std::map< std::string, ModuleDescription > > > ModuleDescriptionMap
Definition: NetworkFwd.h:88
boost::shared_ptr< DatatypeSourceInterface > DatatypeSourceInterfaceHandle
Definition: NetworkFwd.h:83
boost::shared_ptr< PortInterface > PortHandle
Definition: NetworkFwd.h:77
boost::shared_ptr< DatatypeSinkInterface > DatatypeSinkInterfaceHandle
Definition: NetworkFwd.h:82
boost::shared_ptr< ModuleInterface > ModuleHandle
Definition: NetworkFwd.h:74
boost::shared_ptr< ModuleFactory > ModuleFactoryHandle
Definition: NetworkFwd.h:81
boost::shared_ptr< Connection > ConnectionHandle
Definition: NetworkFwd.h:78
boost::shared_ptr< NetworkInterface > NetworkHandle
Definition: NetworkFwd.h:71