diff --git a/Core/Computation/DWBASingleComputation.cpp b/Core/Computation/DWBASingleComputation.cpp index e3acd2172c4373c3c1631c0678c5abbdede2f924..fc183db8492c4f50c1ae52515e69cae239d25371 100644 --- a/Core/Computation/DWBASingleComputation.cpp +++ b/Core/Computation/DWBASingleComputation.cpp @@ -22,8 +22,6 @@ DWBASingleComputation::DWBASingleComputation() = default; DWBASingleComputation::~DWBASingleComputation() = default; -DWBASingleComputation::DWBASingleComputation(DWBASingleComputation&&) = default; - void DWBASingleComputation::setProgressHandler(ProgressHandler* p_progress) { m_progress_counter = std::make_unique<DelayedProgressCounter>(p_progress, 100); @@ -59,8 +57,3 @@ void DWBASingleComputation::compute(SimulationElement& elem) const if (m_progress_counter) m_progress_counter->stepProgress(); } - -const std::map<size_t, std::vector<HomogeneousRegion>>& DWBASingleComputation::regionMap() const -{ - return m_region_map; -} diff --git a/Core/Computation/DWBASingleComputation.h b/Core/Computation/DWBASingleComputation.h index dc00b0ffbce62534a0189b4716277832c1937545..424c755c3e7c543f5ec8a5de68a8f63dab992828 100644 --- a/Core/Computation/DWBASingleComputation.h +++ b/Core/Computation/DWBASingleComputation.h @@ -39,7 +39,6 @@ class DWBASingleComputation public: DWBASingleComputation(); ~DWBASingleComputation(); - DWBASingleComputation(DWBASingleComputation&& other); void setProgressHandler(ProgressHandler* p_progress); @@ -48,9 +47,6 @@ public: void setSpecularBinComputation(GISASSpecularComputation* p_spec_comp); void compute(SimulationElement& elem) const; - //! Retrieves a map of regions for the calculation of averaged layers - const std::map<size_t, std::vector<HomogeneousRegion>>& regionMap() const; - private: std::vector<std::unique_ptr<ParticleLayoutComputation>> m_layout_comps; std::unique_ptr<RoughMultiLayerComputation> m_roughness_comp; diff --git a/auto/Wrap/doxygenCore.i b/auto/Wrap/doxygenCore.i index 5cbdf2f416319422e172f50ac1dff396929e020d..77e9687693656d12e0c4dadab781bba1be7573f3 100644 --- a/auto/Wrap/doxygenCore.i +++ b/auto/Wrap/doxygenCore.i @@ -420,9 +420,6 @@ C++ includes: DWBASingleComputation.h %feature("docstring") DWBASingleComputation::~DWBASingleComputation "DWBASingleComputation::~DWBASingleComputation() "; -%feature("docstring") DWBASingleComputation::DWBASingleComputation "DWBASingleComputation::DWBASingleComputation(DWBASingleComputation &&other) -"; - %feature("docstring") DWBASingleComputation::setProgressHandler "void DWBASingleComputation::setProgressHandler(ProgressHandler *p_progress) "; @@ -438,11 +435,6 @@ C++ includes: DWBASingleComputation.h %feature("docstring") DWBASingleComputation::compute "void DWBASingleComputation::compute(SimulationElement &elem) const "; -%feature("docstring") DWBASingleComputation::regionMap "const std::map< size_t, std::vector< HomogeneousRegion > > & DWBASingleComputation::regionMap() const - -Retrieves a map of regions for the calculation of averaged layers. -"; - // File: classFitObjective.xml %feature("docstring") FitObjective "