diff options
Diffstat (limited to 'Swiften/Queries/GetResponder.h')
-rw-r--r-- | Swiften/Queries/GetResponder.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Swiften/Queries/GetResponder.h b/Swiften/Queries/GetResponder.h index 213a52f..18dd694 100644 --- a/Swiften/Queries/GetResponder.h +++ b/Swiften/Queries/GetResponder.h @@ -1,7 +1,7 @@ /* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. + * Copyright (c) 2010-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. */ #pragma once @@ -10,12 +10,12 @@ #include <Swiften/Queries/Responder.h> namespace Swift { - template<typename T> - class SWIFTEN_API GetResponder : public Responder<T> { - public: - GetResponder(IQRouter* router) : Responder<T>(router) {} + template<typename T> + class SWIFTEN_API GetResponder : public Responder<T> { + public: + GetResponder(IQRouter* router) : Responder<T>(router) {} - private: - virtual bool handleSetRequest(const JID&, const JID&, const std::string&, boost::shared_ptr<T>) { return false; } - }; + private: + virtual bool handleSetRequest(const JID&, const JID&, const std::string&, std::shared_ptr<T>) { return false; } + }; } |