blob: f10cbc9ca2e9980d19ba5275ea7ce555fc64bbac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* Copyright (c) 2011 Tobias Markmann
* Licensed under the BSD license.
* See http://www.opensource.org/licenses/bsd-license.php for more information.
*/
#include <Swiften/Parser/PayloadParsers/DeliveryReceiptRequestParser.h>
#include <boost/optional.hpp>
#include <Swiften/Base/Log.h>
namespace Swift {
DeliveryReceiptRequestParser::DeliveryReceiptRequestParser() {
}
void DeliveryReceiptRequestParser::handleStartElement(const std::string&, const std::string&, const AttributeMap&) {
}
void DeliveryReceiptRequestParser::handleEndElement(const std::string&, const std::string&) {
}
void DeliveryReceiptRequestParser::handleCharacterData(const std::string&) {
}
}
|