summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/xfireparse.cpp
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/xfireparse.cpp
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/xfireparse.cpp')
-rw-r--r--protocols/Xfire/src/xfireparse.cpp23
1 files changed, 4 insertions, 19 deletions
diff --git a/protocols/Xfire/src/xfireparse.cpp b/protocols/Xfire/src/xfireparse.cpp
index 382901f853..1d49eb0f34 100644
--- a/protocols/Xfire/src/xfireparse.cpp
+++ b/protocols/Xfire/src/xfireparse.cpp
@@ -23,27 +23,12 @@
#include "stdafx.h"
#include "xfireparse.h"
-namespace xfirelib {
using namespace std;
-XFireParse::XFireParse() {
-}
-
-
-/*void XFireParse::readVariableAttribut( char *value, char *packet, char *attr,int packet_length,int attr_length, int start,int max_length ) {
-int length_index = findString2(packet,attr, packet_length,mir_strlen(attr),start)+attr_length+1;
-
- unsigned int length = xfire_hex_to_intC(packet[length_index]);
-
- if (max_length >= length){
- memcpy(value,packet+length_index+2,length);
+namespace xfirelib
+{
+ XFireParse::XFireParse()
+ {
}
- if (max_length > length){
- memset(value+length,0,1);
- }
- return length_index+2+length;
-}*/
-
-
};