Advertisement
frasl

Untitled

Feb 11th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. int main() {
  2.     dispatch_demo<int, 0> d0;
  3.     dispatch_demo<int, 1> d1;
  4.     dispatch_demo<int, 2> d2;
  5.  
  6.     d0.do_the_job();
  7.     d1.do_the_job();
  8.     d2.do_the_job();
  9.  
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement