Restructure header files.

This should prevent the tests from being recompiled.
This commit is contained in:
2019-09-15 13:44:26 +02:00
parent 4f1ddec002
commit c046d5da01
7 changed files with 15 additions and 9 deletions

9
2019/src/days.hpp Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <iosfwd>
namespace aoc2019 {
// Declarations of all implemented days.
void day01_part1(std::istream &input, std::ostream &output);
void day01_part2(std::istream &input, std::ostream &output);
}