Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active September 8, 2017 09:40
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/26b0d370675888b5f7172d7d58b14c8d to your computer and use it in GitHub Desktop.
Save deque-blog/26b0d370675888b5f7172d7d58b14c8d to your computer and use it in GitHub Desktop.
struct Interface1 : Clonable<Interface1> { /* ... */ };
struct Interface2 : Clonable<Interface2> { /* ... */ };
class Implementation : public Interface1, public Interface2
{
//...
protected:
virtual Implementation* cloneImpl() const override
{
return new Implementation(*this);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment