summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/sendnickchangepacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/sendnickchangepacket.h')
-rw-r--r--protocols/Xfire/src/sendnickchangepacket.h25
1 files changed, 11 insertions, 14 deletions
diff --git a/protocols/Xfire/src/sendnickchangepacket.h b/protocols/Xfire/src/sendnickchangepacket.h
index 940bac032d..5ce0668422 100644
--- a/protocols/Xfire/src/sendnickchangepacket.h
+++ b/protocols/Xfire/src/sendnickchangepacket.h
@@ -24,28 +24,25 @@
#define __SENDNICKCHANGEPACKET_H
#include "xfiresendpacketcontent.h"
-#include <string>
#define XFIRE_SEND_NICKCHANGE_PACKET_ID 14;
namespace xfirelib {
- using namespace std;
+ using namespace std;
- class SendNickChangePacket : public XFireSendPacketContent {
- public:
- virtual ~SendNickChangePacket() { }
+ class SendNickChangePacket : public XFireSendPacketContent {
+ public:
+ virtual ~SendNickChangePacket() { }
- XFirePacketContent *newPacket() { return new SendNickChangePacket; }
- int getPacketId() { return XFIRE_SEND_NICKCHANGE_PACKET_ID; }
+ XFirePacketContent *newPacket() { return new SendNickChangePacket; }
+ int getPacketId() { return XFIRE_SEND_NICKCHANGE_PACKET_ID; }
- int getPacketContent(char *buf);
- int getPacketAttributeCount() { return 1; }
- int getPacketSize() { return 1024; }
-
- string nick;
- };
+ int getPacketContent(char *buf);
+ int getPacketAttributeCount() { return 1; }
+ int getPacketSize() { return 1024; }
+ string nick;
+ };
};
-
#endif