rem. legacy added commited master
removed legacy file structure and added the planned structure
This commit is contained in:
16
00_General/header/input.h
Normal file
16
00_General/header/input.h
Normal 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;
|
||||
};
|
0
00_General/header/output.h
Normal file
0
00_General/header/output.h
Normal file
0
00_General/header/solve.h
Normal file
0
00_General/header/solve.h
Normal file
0
00_General/input.cpp
Normal file
0
00_General/input.cpp
Normal file
0
00_General/output.cpp
Normal file
0
00_General/output.cpp
Normal file
0
00_General/solve.cpp
Normal file
0
00_General/solve.cpp
Normal file
Reference in New Issue
Block a user