Updated main and aoc2022 ready for tomorrow :)
This commit is contained in:
@ -1,5 +1,13 @@
|
||||
#pragma once
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <chrono>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <stack>
|
||||
#include <queue>
|
||||
#include <unordered_map>
|
||||
#include <map>
|
||||
|
||||
template <typename Output>
|
||||
struct SDay {
|
||||
@ -7,7 +15,7 @@ struct SDay {
|
||||
std::ifstream input;
|
||||
|
||||
//Constructor and Destructor
|
||||
SDay(std::string);
|
||||
SDay(std::string name);
|
||||
~SDay();
|
||||
|
||||
virtual Output part1() const = 0;
|
||||
|
Reference in New Issue
Block a user