blob: 93560c6fb1dd03a839e533932d7ef156e4bc2e45 (
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
31
32
33
34
35
36
37
38
|
/*
* Copyright (c) 2011 Tobias Markmann
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#include <Swiften/Elements/JingleFileTransferDescription.h>
#include <Swiften/Parser/GenericPayloadParser.h>
#include <Swiften/Parser/PayloadParser.h>
namespace Swift {
class PayloadParserFactoryCollection;
class JingleFileTransferDescriptionParser : public GenericPayloadParser<JingleFileTransferDescription> {
public:
JingleFileTransferDescriptionParser(PayloadParserFactoryCollection* factories);
virtual void handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes);
virtual void handleEndElement(const std::string& element, const std::string&);
virtual void handleCharacterData(const std::string& data);
private:
enum CurrentParseElement {
UnknownElement,
RequestElement,
OfferElement,
};
PayloadParserFactoryCollection* factories;
int level;
CurrentParseElement currentElement;
boost::shared_ptr<PayloadParser> currentPayloadParser;
};
}
|