tuple
< RenderWindow
>
interface
{ RenderWindow (VideoMode(1920, 1080), "") };
Before anyone says "why would you want ... " just don't. I could use window.create(), but I want to be sure that what I'm trying to do isn't actually possible. The compiler spits out complaints about RenderWindow being noncopyable.
How would I initialize a tuple element without performing a copy? In other words, how do I emplace an element into a tuple?