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