Compare commits
No commits in common. "5fd685cc5596474ff3b17e79b0aa59c75974401a" and "d2007f41da7d3c1702de1db57a78d7e11dd85e50" have entirely different histories.
5fd685cc55
...
d2007f41da
|
@ -3,6 +3,4 @@ project(AOC_24)
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 20)
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
|
|
||||||
add_executable(AOC_24 main.cpp
|
add_executable(AOC_24 main.cpp)
|
||||||
days/day01.cpp
|
|
||||||
days/day01.h)
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
//
|
|
||||||
// Created by stedd on 01.12.24.
|
|
||||||
//
|
|
||||||
|
|
||||||
#include "day01.h"
|
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
#include <ostream>
|
|
||||||
|
|
||||||
void day01::Run()
|
|
||||||
{
|
|
||||||
std::cout << "Day 01" << std::endl;
|
|
||||||
}
|
|
16
days/day01.h
16
days/day01.h
|
@ -1,16 +0,0 @@
|
||||||
//
|
|
||||||
// Created by stedd on 01.12.24.
|
|
||||||
//
|
|
||||||
|
|
||||||
#ifndef DAY01_H
|
|
||||||
#define DAY01_H
|
|
||||||
|
|
||||||
|
|
||||||
class day01
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static void Run();
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif //DAY01_H
|
|
Loading…
Reference in New Issue