summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/getbuddyinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/getbuddyinfo.h')
-rw-r--r--protocols/Xfire/src/getbuddyinfo.h26
1 files changed, 12 insertions, 14 deletions
diff --git a/protocols/Xfire/src/getbuddyinfo.h b/protocols/Xfire/src/getbuddyinfo.h
index efd8ded51d..a46b7b0f91 100644
--- a/protocols/Xfire/src/getbuddyinfo.h
+++ b/protocols/Xfire/src/getbuddyinfo.h
@@ -30,25 +30,23 @@
#include "xfiresendpacketcontent.h"
#include "variablevalue.h"
-#include <string>
-
namespace xfirelib {
- class GetBuddyInfo : public XFireSendPacketContent {
- public:
- XFirePacketContent* newPacket() { return new GetBuddyInfo(); }
+ class GetBuddyInfo : public XFireSendPacketContent {
+ public:
+ XFirePacketContent* newPacket() { return new GetBuddyInfo(); }
- int getPacketId() { return 0x25; }
- int getPacketContent(char *buf);
- int getPacketAttributeCount();
- int getPacketSize() { return 1000; };
- void parseContent(char *buf, int length, int numberOfAtts) { };
+ int getPacketId() { return 0x25; }
+ int getPacketContent(char *buf);
+ int getPacketAttributeCount();
+ int getPacketSize() { return 1000; };
+ void parseContent(char*, int, int) { };
- unsigned int userid;
+ unsigned int userid;
- private:
- int length;
- };
+ private:
+ int length;
+ };
};