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