rem. legacy added commited master

removed legacy file structure and added the planned structure
This commit is contained in:
g-spacewhale
2017-11-17 21:23:32 +01:00
parent 5480c2e5a8
commit a1dea01195
1025 changed files with 16 additions and 125 deletions

16
00_General/header/input.h Normal file
View File

@ -0,0 +1,16 @@
#include <stdint.h>
class Part
{
public:
Part(): connections(0){}
~Part() {}
uint8_t getConnections() const
{return connections;}
void setConnections(uint8_t newconnections)
{connections = newconnections;}
private:
uint8_t connections;
};

View File

View File

0
00_General/input.cpp Normal file
View File

0
00_General/output.cpp Normal file
View File

0
00_General/solve.cpp Normal file
View File