added folder structure
This commit is contained in:
		@@ -1,16 +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;
 | 
			
		||||
#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;
 | 
			
		||||
};
 | 
			
		||||
		Reference in New Issue
	
	Block a user