summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/sendsidpacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/sendsidpacket.h')
-rw-r--r--protocols/Xfire/src/sendsidpacket.h27
1 files changed, 12 insertions, 15 deletions
diff --git a/protocols/Xfire/src/sendsidpacket.h b/protocols/Xfire/src/sendsidpacket.h
index ffffad2071..a39e615f33 100644
--- a/protocols/Xfire/src/sendsidpacket.h
+++ b/protocols/Xfire/src/sendsidpacket.h
@@ -31,27 +31,24 @@
#include "xfiresendpacketcontent.h"
#include "variablevalue.h"
-#include <vector>
-#include <string>
-
namespace xfirelib {
using namespace std;
- class SendSidPacket : public XFireSendPacketContent {
- public:
- XFirePacketContent* newPacket() { return new SendSidPacket(); }
+ class SendSidPacket : public XFireSendPacketContent {
+ public:
+ XFirePacketContent* newPacket() { return new SendSidPacket(); }
- int getPacketId() { return 0x5; }
- int getPacketContent(char *buf);
- int getPacketAttributeCount();
- int getPacketSize() { return 1000; };
- void parseContent(char *buf, int length, int numberOfAtts) { };
+ int getPacketId() { return 0x5; }
+ int getPacketContent(char *buf);
+ int getPacketAttributeCount();
+ int getPacketSize() { return 1000; };
+ void parseContent(char*, int, int) { };
- vector<char *> *sids;
+ vector<char *> *sids;
- private:
- int length;
- };
+ private:
+ int length;
+ };
};