diff options
Diffstat (limited to 'protocols/Xfire/src/xfiresendpacketcontent.h')
-rw-r--r-- | protocols/Xfire/src/xfiresendpacketcontent.h | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/protocols/Xfire/src/xfiresendpacketcontent.h b/protocols/Xfire/src/xfiresendpacketcontent.h index 7ce106d295..807ef1a27e 100644 --- a/protocols/Xfire/src/xfiresendpacketcontent.h +++ b/protocols/Xfire/src/xfiresendpacketcontent.h @@ -27,17 +27,15 @@ namespace xfirelib { - class XFireSendPacketContent : public XFirePacketContent { - public: - /** - * This method is not needed for outgoing packets.. since this method is only - * used for parsing .. so return null - */ - XFirePacketContent *newPacket() { return 0; } - void parseContent(char *buf, int length, int numberOfAtts) { } - }; - + class XFireSendPacketContent : public XFirePacketContent { + public: + /** + * This method is not needed for outgoing packets.. since this method is only + * used for parsing .. so return null + */ + XFirePacketContent *newPacket() { return 0; } + void parseContent(char*, int, int) {} + }; }; - #endif |