Page MenuHomec4science

planets_factory.hh
No OneTemporary

File Metadata

Created
Fri, May 10, 14:16

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,
int argc, char** argv) override;
std::unique_ptr<Particle> createParticle() override;
static ParticlesFactoryInterface& getInstance();
};
/* -------------------------------------------------------------------------- */
#endif //__PLANETS_FACTORY__HH__

Event Timeline