diff options
Diffstat (limited to 'Swiften/Parser/PayloadParsers/SubjectParserFactory.h')
-rw-r--r-- | Swiften/Parser/PayloadParsers/SubjectParserFactory.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Swiften/Parser/PayloadParsers/SubjectParserFactory.h b/Swiften/Parser/PayloadParsers/SubjectParserFactory.h new file mode 100644 index 0000000..8ac45c6 --- /dev/null +++ b/Swiften/Parser/PayloadParsers/SubjectParserFactory.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2010 Kevin Smith + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include "Swiften/Parser/GenericPayloadParserFactory.h" +#include "Swiften/Parser/PayloadParsers/SubjectParser.h" + +namespace Swift { + class SubjectParserFactory : public GenericPayloadParserFactory<SubjectParser> { + public: + SubjectParserFactory() : GenericPayloadParserFactory<SubjectParser>("subject") {} + }; +} + |