summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/getbuddyinfo.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-08-11 13:33:42 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-08-11 13:33:42 +0000
commit85bd008c039eb1d93894e94fba9d158a42a71a12 (patch)
tree2d72d10759f6928e9e4b960175d2de01b5cf7e12 /protocols/Xfire/src/getbuddyinfo.h
parent222802c2986dcaf029fdfb828b7679bdabfa7bb2 (diff)
massive code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@14910 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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;
+ };
};