This website works better with JavaScript.
Home
Explore
Help
Sign In
yigitcolakoglu
/
mconnect
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
3
Wiki
Activity
Browse Source
packethandlers: helper to have all handlers use the device
bboozzoo/device-cache
Maciek Borzecki
10 years ago
parent
a1d63da60a
commit
71a94c3f20
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
src/packethandlers.vala
+ 6
- 0
src/packethandlers.vala
View File
@ -59,4 +59,10 @@ class PacketHandlers : Object {
}
// return interfaces;
}
public void use_device(Device dev) {
_handlers.foreach((h) => {
h.use_device(dev);
});
}
}
Write
Preview
Loading…
Cancel
Save