Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
462 Brean 1
#include "Communication.h"
2
 
3
bool Communication::is_connected() {
4
    return connected;
5
}
6
 
7
void Communication::connection_established() {
8
    connected = true;
9
}
10
 
11
void Communication::connection_lost() {
12
    connected = false;
500 Brean 13
}