summaryrefslogtreecommitdiffstats
blob: 3a950efec3a3ef9b0cce7f1cc1edf8b58f663ea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SWIFTEN_AuthFailureParser_H
#define SWIFTEN_AuthFailureParser_H

#include "Swiften/Parser/GenericElementParser.h"
#include "Swiften/Elements/AuthFailure.h"

namespace Swift {
	class AuthFailureParser : public GenericElementParser<AuthFailure> {
		public:
			AuthFailureParser() : GenericElementParser<AuthFailure>() {}
	};
}

#endif