Created
August 3, 2012 05:14
-
-
Save jeffomatic/3244600 to your computer and use it in GitHub Desktop.
blog: jl_signal, code: example of signal classes with arity-based names
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template< typename P1 > | |
class Signal1 { .... }; | |
template< typename P1, typename P2 > | |
class Signal2 { ... }; | |
... | |
template< typename P1, typename P2, typename P3, ..., template P8 > | |
class Signal8 { ... }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment