diff options
Diffstat (limited to 'Swiften/Queries/SetResponder.h')
-rw-r--r-- | Swiften/Queries/SetResponder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Queries/SetResponder.h b/Swiften/Queries/SetResponder.h index 44d5b66..e2842f4 100644 --- a/Swiften/Queries/SetResponder.h +++ b/Swiften/Queries/SetResponder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2015 Isode Limited. + * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -16,6 +16,6 @@ namespace Swift { SetResponder(IQRouter* router) : Responder<T>(router) {} private: - virtual bool handleGetRequest(const JID&, const JID&, const std::string&, boost::shared_ptr<T>) { return false; } + virtual bool handleGetRequest(const JID&, const JID&, const std::string&, std::shared_ptr<T>) { return false; } }; } |