Subversion Repositories Projects

Rev

Go to most recent revision | 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;
}