blob: 880f71af7ddb1b6a28a28e2e043482ca22f19b98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SWIFTEN_CompressFailure_H
#define SWIFTEN_CompressFailure_H
#include "Swiften/Elements/Element.h"
namespace Swift {
class CompressFailure : public Element {
public:
CompressFailure() {}
};
}
#endif
|