Created
September 19, 2017 11:33
-
-
Save njlr/92e36794897f6f52bd55d811f5deebc0 to your computer and use it in GitHub Desktop.
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<class ReturnType, class...Xs> | |
| struct Concept { | |
| virtual ReturnType operator()(Xs...) const = 0; | |
| virtual ReturnType operator()(Xs...) = 0; | |
| virtual ~Concept() {}; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment