36 lines
958 B
C++
36 lines
958 B
C++
#include "AdventHelpers/InputFileHelper.h"
|
|
#include "AdventHelpers/AdventOfCodeSolution.h"
|
|
|
|
#include <iostream>
|
|
|
|
// Interface
|
|
|
|
//class ExampleSolution : public AdventHelpers::IAdventOfCodeSolution
|
|
//{
|
|
//public:
|
|
// virtual std::string SolveExample01(AdventHelper::InputFileHelper& inputFile) override;
|
|
// virtual std::string SolveProblem01(AdventHelper::InputFileHelper& inputFile) override;
|
|
// virtual std::string SolveProblem02(AdventHelper::InputFileHelper& inputFile) override;
|
|
//};
|
|
|
|
int main()
|
|
{
|
|
auto* inputHelper = AdventHelpers::InputFileHelper::create("input.txt");
|
|
|
|
std::cout << "Hello World!\n";
|
|
|
|
AdventHelpers::InputFileHelper::destroy(inputHelper);
|
|
}
|
|
|
|
// Implementation
|
|
|
|
//void ExampleSolution::SolveExample(AdventHelper::InputFileHelper& inputFile) {
|
|
//
|
|
//}
|
|
//
|
|
//void ExampleSolution::SolveProblem01(AdventHelper::InputFileHelper& inputFile) {
|
|
//
|
|
//}
|
|
//
|
|
//void ExampleSolution::SolveProblem02(AdventHelper::InputFileHelper& inputFile) {
|
|
//}
|