summaryrefslogtreecommitdiffstats
blob: 7389b3a08adafc422c2ba04c94a517696f8266ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef SWIFTEN_IQHandler_H
#define SWIFTEN_IQHandler_H

#include <boost/shared_ptr.hpp>

#include "Swiften/Elements/IQ.h"

namespace Swift {
	class IQRouter;

	class IQHandler {
		public:
			virtual ~IQHandler();

			virtual bool handleIQ(boost::shared_ptr<IQ>) = 0;
	};
}

#endif