Changeset 3374 for source/ariba/AribaModule.h
- Timestamp:
- May 7, 2009, 4:51:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/AribaModule.h
r3055 r3374 44 44 #include <boost/foreach.hpp> 45 45 46 // usings47 46 using std::vector; 48 47 using std::string; … … 50 49 // forward declaration 51 50 namespace ariba { 52 class AribaModule; 51 class AribaModule; 52 class SideportListener; 53 53 } 54 54 … … 59 59 namespace ariba { 60 60 61 // forward declarations of old interface62 61 namespace communication { 63 62 class EndpointDescriptor; … … 119 118 void addBootstrapHints(string bootinfo); 120 119 120 /** 121 * Register a sideport for sniffing on communication events 122 * and get advanced information. The sniffer is attached to 123 * every node that is created on the module. Only one such 124 * sniffer can be active system-wide, a new call to this 125 * register function will only attach the sniffer to nodes 126 * created after the registration call. 127 * 128 * @param sideport The SideportListener to integrate 129 */ 130 void registerSideportListener(SideportListener* sideport); 131 121 132 // --- module implementation --- 122 133 … … 185 196 186 197 communication::BaseCommunication* base_comm; 198 SideportListener* sideport_sniffer; 187 199 188 200 // TODO: use "abstract" representations here!
Note:
See TracChangeset
for help on using the changeset viewer.