#ifndef SIMULATION_HPP #define SIMULATION_HPP namespace nbody { class Simulation { public: Simulation(); virtual ~Simulation(); }; } #endif