Skip to content
Snippets Groups Projects
Commit d4522f1f authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

minor changes; add Doxyfile.long

parent bc59df88
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,7 @@
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Tools/IParameterized.cpp
//! @brief Implements class IParameterized,
//! mainly by including IParameterized.h.
//! @brief Implements class IParameterized.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
......@@ -20,13 +19,12 @@
#include <iostream>
#include <memory>
// Copies INamed, but not the parameters.
IParameterized& IParameterized::operator=(const IParameterized& other)
{
if( this !=& other)
{
if( this != &other)
INamed::operator=(other);
// parameters are not copied
}
return *this;
}
......
......@@ -31,7 +31,7 @@ public:
IParameterized() : m_parameters() {}
IParameterized(const std::string &name) : INamed(name), m_parameters() {}
IParameterized(const IParameterized &other) : INamed(other), m_parameters() {}
IParameterized &operator=(const IParameterized &other);
IParameterized& operator=(const IParameterized &other);
virtual ~IParameterized() {}
......@@ -112,5 +112,3 @@ inline std::ostream& operator<<(std::ostream &ostr, const IParameterized &m)
}
#endif /* IPARAMETERIZED_H_ */
This diff is collapsed.
......@@ -2,8 +2,8 @@
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file FitKernel/ROOTMultiFitMinimizer.cpp
//! @brief Implements class ROOTMultiFitMinimizer.
//! @file FitKernel/ROOTLMAMinimizer.cpp
//! @brief Implements class ROOTLMAMinimizer.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
......
......@@ -2,7 +2,7 @@
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file StandardFits/fit_functional_test.h
//! @file StandardFits/fit_functional_tests.h
//! @brief Implements function to run all fit functional tests
//!
//! @homepage http://www.bornagainproject.org
......
......@@ -2,7 +2,7 @@
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file StandardFits/fit_functional_test.h
//! @file StandardFits/fit_functional_tests.h
//! @brief Defines function to run all fit functional tests
//!
//! @homepage http://www.bornagainproject.org
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment