12 lines
159 B
C
12 lines
159 B
C
|
#ifndef AOC2019_SOLUTION_H
|
||
|
#define AOC2019_SOLUTION_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
virtual void run() = 0;
|
||
|
};
|
||
|
|
||
|
#endif //AOC2019_SOLUTION_H
|