Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-03-18 | Added FbTk::relaySignal, which relays new signals to old Subject type signals. | Henrik Kinnunen | 1 | -1/+23 | |
2010-03-18 | Added MemFunIgnoreArgs which ignores aditional arguments. | Henrik Kinnunen | 1 | -1/+22 | |
For example connecting a function that takes two arguments to a signal that emits three arguments: struct Functor { void show(int a, int b); }; Functor f; Signal<void, int, int, int> s3; s3.connect(MemFunIgnoreArgs(f, &Functor::show)); | |||||
2008-09-18 | Added new Signal/Slot system in FbTk | Henrik Kinnunen | 1 | -0/+121 | |
This is suppose to replace the obsolete Subject/Observer classes. See the src/tests/testSignals.cc for basic usage. |