cppcoreguidelines-special-member-functions
* disable move constructor and move assignment for several core classes
This commit is contained in:
@@ -342,6 +342,12 @@ protected:
|
||||
FeatureT::onDocumentRestored();
|
||||
}
|
||||
|
||||
public:
|
||||
FeaturePythonT(const FeaturePythonT&) = delete;
|
||||
FeaturePythonT(FeaturePythonT&&) = delete;
|
||||
FeaturePythonT& operator= (const FeaturePythonT&) = delete;
|
||||
FeaturePythonT& operator= (FeaturePythonT&&) = delete;
|
||||
|
||||
private:
|
||||
FeaturePythonImp* imp;
|
||||
PropertyPythonObject Proxy;
|
||||
|
||||
Reference in New Issue
Block a user