summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/recvdidpacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/recvdidpacket.h')
-rw-r--r--protocols/Xfire/src/recvdidpacket.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/protocols/Xfire/src/recvdidpacket.h b/protocols/Xfire/src/recvdidpacket.h
index 92e09ff2f3..89d3026c05 100644
--- a/protocols/Xfire/src/recvdidpacket.h
+++ b/protocols/Xfire/src/recvdidpacket.h
@@ -28,16 +28,14 @@
#define XFIRE_RECVDIDPACKET 144
namespace xfirelib {
- class RecvDidPacket : public XFireRecvPacketContent {
- public:
- virtual ~RecvDidPacket() { }
- int getPacketId() { return XFIRE_RECVDIDPACKET; }
-
- XFirePacketContent *newPacket() { return new RecvDidPacket(); }
- void parseContent(char *buf, int length, int numberOfAtts);
- };
-
+ class RecvDidPacket : public XFireRecvPacketContent {
+ public:
+ virtual ~RecvDidPacket() { }
+ int getPacketId() { return XFIRE_RECVDIDPACKET; }
+
+ XFirePacketContent *newPacket() { return new RecvDidPacket(); }
+ void parseContent(char *buf, int length, int numberOfAtts);
+ };
};
-
#endif