summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/clientinformationpacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/clientinformationpacket.h')
-rw-r--r--protocols/Xfire/src/clientinformationpacket.h36
1 files changed, 17 insertions, 19 deletions
diff --git a/protocols/Xfire/src/clientinformationpacket.h b/protocols/Xfire/src/clientinformationpacket.h
index 533e3fbc91..183d54740d 100644
--- a/protocols/Xfire/src/clientinformationpacket.h
+++ b/protocols/Xfire/src/clientinformationpacket.h
@@ -28,27 +28,25 @@
#include "xfiresendpacketcontent.h"
#include "variablevalue.h"
-#include <string>
-
namespace xfirelib {
- /**
- * (Internal) packet used by Client::login( std::string, std::string )
- * Users of xfirelib won't need this packet.
- */
- class ClientInformationPacket : public XFireSendPacketContent {
- public:
- XFirePacketContent* newPacket() { return new ClientInformationPacket(); }
-
- int getPacketId() { return 18; }
- int getPacketContent(char *buf);
- int getPacketAttributeCount();
- int getPacketSize() { return 46; };
- void parseContent(char *buf, int length, int numberOfAtts) { };
- std::string skinname;
- private:
- int length;
- };
+ /**
+ * (Internal) packet used by Client::login( std::string, std::string )
+ * Users of xfirelib won't need this packet.
+ */
+ class ClientInformationPacket : public XFireSendPacketContent {
+ public:
+ XFirePacketContent* newPacket() { return new ClientInformationPacket(); }
+
+ int getPacketId() { return 18; }
+ int getPacketContent(char *buf);
+ int getPacketAttributeCount();
+ int getPacketSize() { return 46; };
+ void parseContent(char*, int, int) { };
+ std::string skinname;
+ private:
+ int length;
+ };
};