mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-26 05:10:32 +01:00
10 lines
184 B
C++
10 lines
184 B
C++
#pragma once
|
|
|
|
#include <iosfwd>
|
|
|
|
namespace aoc2019 {
|
|
typedef void (*solution_t)(std::istream &, std::ostream &);
|
|
|
|
solution_t get_implementation(int day, bool part2 = false);
|
|
}
|