Advertisement
Guest User

Untitled

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