summaryrefslogtreecommitdiffstats
blob: b3ba4451e5f6ee913c413425b0b3e57117976521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SWIFTEN_PresenceParser_H
#define SWIFTEN_PresenceParser_H

#include "Swiften/Parser/GenericStanzaParser.h"
#include "Swiften/Elements/Presence.h"

namespace Swift {
	class PresenceParser : public GenericStanzaParser<Presence> {
		public:
			PresenceParser(PayloadParserFactoryCollection* factories);

		private:
			virtual void handleStanzaAttributes(const AttributeMap&);
	};
}

#endif