iclone.h
Go to the documentation of this file.
1 #ifndef MODELS_ICLONE_H
2 #define MODELS_ICLONE_H
3 
4 namespace dnai {
5 namespace models {
6 class IClone {
7 public:
12  virtual IClone* clone() const = 0;
13 };
14 }
15 }
16 
17 #endif // MODELS_ICLONE_H
Definition: iclone.h:6
virtual IClone * clone() const =0
Return a clone the current class.
Definition: api.h:13