#ifndef GENETIC_POPULATION_H #define GENETIC_POPULATION_H namespace Genetic { class Population { public: Population(); virtual ~Population(); }; }; #endif