aoc2019/src/Solution.h

12 lines
159 B
C
Raw Normal View History

2019-12-14 17:05:43 -06:00
#ifndef AOC2019_SOLUTION_H
#define AOC2019_SOLUTION_H
#include <string>
class Solution {
public:
virtual void run() = 0;
};
#endif //AOC2019_SOLUTION_H