summaryrefslogtreecommitdiffstats
blob: 010d9a9b043020233bca64141b58603ab950c445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <boost/shared_ptr.hpp>

#include "Swiften/Elements/AuthChallenge.h"
#include "Swiften/Serializer/GenericElementSerializer.h"

namespace Swift {
	class AuthChallengeSerializer : public GenericElementSerializer<AuthChallenge> {
		public:
			AuthChallengeSerializer();

			virtual String serialize(boost::shared_ptr<Element> element)  const;
	};
}