Class documentation of Concepts

Loading...
Searching...
No Matches
cloneable.hh
Go to the documentation of this file.
1
6#ifndef cloneable_hh
7#define cloneable_hh
8
9namespace concepts {
10
16 class Cloneable {
17 public:
21 virtual Cloneable* clone() const = 0;
22 virtual ~Cloneable() {}
23 };
24
25} // namespace concepts
26
27#endif // cloneable_hh
virtual Cloneable * clone() const =0