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