blob: d53e0ef458ee2b7d555ba4629b864eaae58cd911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SWIFTEN_CompressFailureParser_H
#define SWIFTEN_CompressFailureParser_H
#include "Swiften/Parser/GenericElementParser.h"
#include "Swiften/Elements/CompressFailure.h"
namespace Swift {
class CompressFailureParser : public GenericElementParser<CompressFailure> {
public:
CompressFailureParser() : GenericElementParser<CompressFailure>() {}
};
}
#endif
|