diff --git a/GeoLib/Surface.h b/GeoLib/Surface.h index 494b9574ee9e86c8657c267b2583192094fa7c92..e94fe2eca155c5c026002f9b9d35ecad4b140296 100644 --- a/GeoLib/Surface.h +++ b/GeoLib/Surface.h @@ -39,6 +39,10 @@ public: Surface(Surface const& src); ~Surface(); + Surface(Surface && src) = delete; + Surface& operator=(Surface const& src) = delete; + Surface& operator=(Surface && src) = delete; + /// return a geometry type GEOTYPE getGeoType() const override { return GEOTYPE::SURFACE; } /**