12 lines
194 B
C
12 lines
194 B
C
|
#ifndef AOC2019_DAY1SOLUTION_H
|
||
|
#define AOC2019_DAY1SOLUTION_H
|
||
|
|
||
|
#include "Solution.h"
|
||
|
|
||
|
class Day1Solution : public Solution {
|
||
|
public:
|
||
|
void run() override;
|
||
|
};
|
||
|
|
||
|
#endif //AOC2019_DAY1SOLUTION_H
|