Subversion Repositories Projects

Rev

Rev 462 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include "Communication.h"

bool Communication::is_connected() {
    return connected;
}

void Communication::connection_established() {
    connected = true;
}

void Communication::connection_lost() {
    connected = false;
}