blob: b2038db4fb045a645801738577f51f440d87778e (
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
|
/*
* Copyright (c) 2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swiften/Parser/PayloadParsers/CarbonsPrivateParser.h>
namespace Swift {
CarbonsPrivateParser::CarbonsPrivateParser() : GenericPayloadParser<CarbonsPrivate>() {
}
CarbonsPrivateParser::~CarbonsPrivateParser() {
}
void CarbonsPrivateParser::handleStartElement(const std::string&, const std::string&, const AttributeMap&) {
}
void CarbonsPrivateParser::handleEndElement(const std::string&, const std::string&) {
}
void CarbonsPrivateParser::handleCharacterData(const std::string&) {
}
}
|