#include "Slot.h"

#include <stdio.h>


Slot :: Slot() {

}

bool Slot :: set_comPort(Channel* comPort) {
	if(comPort != NULL) {
		this->comPort = comPort;
		return true;
	}
	return false;
}

Channel* Slot :: get_comPort() {
	return comPort;
}