aboutsummaryrefslogtreecommitdiff
path: root/src/protocol.cpp
blob: 78b3ee27e41e87450d98caa28b84b36817c8a905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "protocol.h"

Protocol::Protocol()
{
	pConnection = NULL;
}

Protocol::~Protocol()
{
}

void Protocol::setConnection( Connection *pNewConnection )
{
	pConnection = pNewConnection;
}

Connection *Protocol::getConnection()
{
	return pConnection;
}