Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. class IStuff {};
  2.  
  3. template< template< typename > class Strat>
  4. class Stuff : public IStuff {};
  5.  
  6. IStuff* factory()
  7. {
  8.     return Stuff<Bite>();
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement