blob: 92db130f94983f4dcac340e0f098a441dba68cc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "stdafx.h"
#include "InputOutputStream.h"
#include "PacketListener.h"
#include "GetInfoPacket.h"
void GetInfoPacket::read(DataInputStream *dis)
{
}
void GetInfoPacket::write(DataOutputStream *dos)
{
}
void GetInfoPacket::handle(PacketListener *listener)
{
listener->handleGetInfo(shared_from_this());
}
int GetInfoPacket::getEstimatedSize()
{
return 0;
}
|