first run structure
This commit is contained in:
parent
e0d65521c0
commit
5fd685cc55
|
@ -3,3 +3,11 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "day01.h"
|
#include "day01.h"
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include <ostream>
|
||||||
|
|
||||||
|
void day01::Run()
|
||||||
|
{
|
||||||
|
std::cout << "Day 01" << std::endl;
|
||||||
|
}
|
||||||
|
|
|
@ -6,11 +6,11 @@
|
||||||
#define DAY01_H
|
#define DAY01_H
|
||||||
|
|
||||||
|
|
||||||
|
class day01
|
||||||
class day01 {
|
{
|
||||||
|
public:
|
||||||
|
static void Run();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif //DAY01_H
|
#endif //DAY01_H
|
||||||
|
|
Loading…
Reference in New Issue