summaryrefslogtreecommitdiffstats
blob: 5e7d42d61f547ac55beca7463f46176d0f360f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2010-2015 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <Swiften/Base/API.h>
#include <Swiften/Queries/Responder.h>

namespace Swift {
	template<typename T>
	class SWIFTEN_API SetResponder : public Responder<T> {
		public:
			SetResponder(IQRouter* router) : Responder<T>(router) {}

		private:
			virtual bool handleGetRequest(const JID&, const JID&, const std::string&, boost::shared_ptr<T>) { return false; }
	};
}