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

forward declaration

parent 74c4dd17
No related branches found
No related tags found
1 merge request!1009move validation out of constructor; replace ParaMeta based parameter checks
......@@ -19,6 +19,7 @@
#include "GUI/Model/Sample/MaterialItem.h"
#include "GUI/Model/Sample/ParticleCoreShellItem.h"
#include "GUI/Support/XML/Serialize.h"
#include "Sample/Particle/IFormFactor.h"
#include "Sample/Particle/Particle.h"
#include "Sample/Scattering/Rotations.h"
......
......@@ -27,6 +27,7 @@
#include "GUI/View/Realspace/RealSpaceMesoCrystalUtils.h"
#include "GUI/View/Realspace/TransformTo3D.h"
#include "Resample/Particle/ReParticle.h"
#include "Sample/Particle/IFormFactor.h"
#include "Sample/Particle/MesoCrystal.h"
#include "Sample/Particle/Particle.h"
#include "Sample/Particle/ParticleCoreShell.h"
......
......@@ -15,6 +15,7 @@
#include "Sample/Particle/Particle.h"
#include "Base/Util/Assert.h"
#include "Base/Vector/RotMatrix.h"
#include "Sample/Particle/IFormFactor.h"
#include "Sample/Scattering/Rotations.h"
Particle::Particle(Material material, const IFormFactor& formfactor)
......
......@@ -16,9 +16,10 @@
#define BORNAGAIN_SAMPLE_PARTICLE_PARTICLE_H
#include "Sample/Material/Material.h"
#include "Sample/Particle/IFormFactor.h"
#include "Sample/Particle/IParticle.h"
class IFormFactor;
//! A particle with a form factor and refractive index.
//! @ingroup samples
......
......@@ -24,6 +24,7 @@
#include "Sample/Multilayer/Layer.h"
#include "Sample/Multilayer/MultiLayer.h"
#include "Sample/Particle/Crystal.h"
#include "Sample/Particle/IFormFactor.h"
#include "Sample/Particle/MesoCrystal.h"
#include "Sample/Particle/Particle.h"
#include "Sample/Particle/ParticleComposition.h"
......
......@@ -5616,8 +5616,6 @@ magnetization (in A/m)
// File: Particle_8cpp.xml
%feature("docstring") validate "std::string validate() const
";
// File: Particle_8h.xml
......
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