summaryrefslogtreecommitdiffstats
blob: 8d47291fbabaaaa99f44ff303eb6d808d58db43e (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/AuthResponse.h"
#include "Swiften/Serializer/GenericElementSerializer.h"

namespace Swift {
	class AuthResponseSerializer : public GenericElementSerializer<AuthResponse> {
		public:
			AuthResponseSerializer();

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