Split 2025 into lang
This commit is contained in:
36
2025/Cpp/AdventHelpersTester/AdventHelpersTester.cpp
Normal file
36
2025/Cpp/AdventHelpersTester/AdventHelpersTester.cpp
Normal file
@@ -0,0 +1,36 @@
|
||||
#include "AdventHelpers/InputFileHelper.h"
|
||||
#include "AdventHelpers/AdventOfCodeSolution.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
// Interface
|
||||
|
||||
class ExampleSolution : public AdventHelpers::IAdventOfCodeSolution
|
||||
{
|
||||
public:
|
||||
virtual void SolveExample(AdventHelper::InputFileHelper& inputFile) override;
|
||||
virtual void SolveProblem01(AdventHelper::InputFileHelper& inputFile) override;
|
||||
virtual void SolveProblem02(AdventHelper::InputFileHelper& inputFile) override;
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
auto* inputHelper = AdventHelper::InputFileHelper::create("input.txt");
|
||||
|
||||
std::cout << "Hello World!\n";
|
||||
|
||||
AdventHelper::InputFileHelper::destroy(inputHelper);
|
||||
}
|
||||
|
||||
// Implementation
|
||||
|
||||
void ExampleSolution::SolveExample(AdventHelper::InputFileHelper& inputFile) {
|
||||
|
||||
}
|
||||
|
||||
void ExampleSolution::SolveProblem01(AdventHelper::InputFileHelper& inputFile) {
|
||||
|
||||
}
|
||||
|
||||
void ExampleSolution::SolveProblem02(AdventHelper::InputFileHelper& inputFile) {
|
||||
}
|
||||
Reference in New Issue
Block a user