Skip to content
Snippets Groups Projects
Communications.cpp 244 B
Newer Older
#include "Communications.h"


bool start()
{
	return true;
}

bool stop()
{
	return false;
}

bool connect()
{
	return true;
}

bool disconnect()
{
	return false;
}

bool sendMessage()
{
	return true;
}

bool receiveMessage()
{
	return false;
}