blob: 6910ff8d3e7af1dfd097a73f5122ea60ba9a448c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (c) 2010 Remko Tronçon
* 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/CapsInfoParser.h"
namespace Swift {
class CapsInfoParserFactory : public GenericPayloadParserFactory<CapsInfoParser> {
public:
CapsInfoParserFactory() : GenericPayloadParserFactory<CapsInfoParser>("c", "http://jabber.org/protocol/caps") {}
};
}
|