refs #937 Resolved clazy warnings: rule of three.

This commit is contained in:
Mathew Sutcliffe
2017-04-15 01:28:23 +01:00
parent 3ea9e33e6b
commit b20ebd6dfd
15 changed files with 60 additions and 13 deletions

View File

@@ -43,6 +43,12 @@ namespace BlackMisc
//! Delete files
void deleteFiles();
//! Not copyable.
//! @{
CFileDeleter(const CFileDeleter &) = delete;
CFileDeleter &operator =(const CFileDeleter &) = delete;
//! @}
private:
QStringList m_fileNames;
};