Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created September 8, 2017 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/d3b3835ef9e98d1c9bc135ecadc96701 to your computer and use it in GitHub Desktop.
Save deque-blog/d3b3835ef9e98d1c9bc135ecadc96701 to your computer and use it in GitHub Desktop.
struct Interface1
{
virtual owner<Interface1*> clone() const = 0;
//...
};
struct Interface2
{
virtual owner<Interface2*> clone() const = 0;
//...
};
class Implementation : public Interface1, public Interface2
{
public:
virtual owner<Implementation*> clone() const override
{
return new Implementation(*this);
}
//...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment