Page MenuHomec4science

planets_factory.hh
No OneTemporary

File Metadata

Created
Thu, Apr 25, 10:27

planets_factory.hh

#ifndef __PLANETS_FACTORY__HH__
#define __PLANETS_FACTORY__HH__
/* -------------------------------------------------------------------------- */
#include "particles_factory_interface.hh"
#include "planet.hh"
/* -------------------------------------------------------------------------- */
//! Factory for planet simulations
class PlanetsFactory : public ParticlesFactoryInterface {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
private:
PlanetsFactory() = default;
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
SystemEvolution& createSimulation(const std::string& fname,
Real timestep) override;
std::unique_ptr<Particle> createParticle() override;
static ParticlesFactoryInterface& getInstance();
};
/* -------------------------------------------------------------------------- */
#endif //__PLANETS_FACTORY__HH__

Event Timeline