summaryrefslogtreecommitdiffstats
blob: 8a0799f03bc9e1afa1735579bbce594d3fb6c243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2010 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Parser/XMLParser.h>

namespace Swift {

XMLParser::XMLParser(XMLParserClient* client, bool allowComments) : client_(client), allowComments_(allowComments){
}

XMLParser::~XMLParser() {
}

}