Some refactoring

This commit is contained in:
tamasmeszaros 2018-12-13 15:33:39 +01:00
parent ef04e558a7
commit dd3c485965
2 changed files with 34 additions and 44 deletions

View file

@ -177,9 +177,9 @@ private: // Prevents erroneous use by other classes.
public:
SLAPrint(): m_stepmask(slapsCount, true) {}
virtual ~SLAPrint() { this->clear(); }
virtual ~SLAPrint() override { this->clear(); }
PrinterTechnology technology() const noexcept { return ptSLA; }
PrinterTechnology technology() const noexcept override { return ptSLA; }
void clear() override;
bool empty() const override { return m_objects.empty(); }