This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/bee/glucose-4/mtl/Clone.h

13 lines
166 B
C
Raw Normal View History

2019-04-22 12:15:21 +01:00
#ifndef Glucose_Clone_h
#define Glucose_Clone_h
namespace Glucose {
class Clone {
public:
virtual Clone* clone() const = 0;
};
};
#endif