Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active September 8, 2017 09:59
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/13ce5ae4ee16036e55d1e2d4e1fd5ada to your computer and use it in GitHub Desktop.
Save deque-blog/13ce5ae4ee16036e55d1e2d4e1fd5ada to your computer and use it in GitHub Desktop.
struct Interface
{
virtual Interface* clone() const = 0;
//...
};
class Implementation : public Interface
{
public:
virtual 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