summaryrefslogtreecommitdiff
path: root/src/population.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/population.h')
-rw-r--r--src/population.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/population.h b/src/population.h
new file mode 100644
index 0000000..0fdad32
--- /dev/null
+++ b/src/population.h
@@ -0,0 +1,14 @@
1#ifndef GENETIC_POPULATION_H
2#define GENETIC_POPULATION_H
3
4namespace Genetic
5{
6 class Population
7 {
8 public:
9 Population();
10 virtual ~Population();
11 };
12};
13
14#endif