summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Queries/DummyIQChannel.h')
-rw-r--r--Swiften/Queries/DummyIQChannel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Swiften/Queries/DummyIQChannel.h b/Swiften/Queries/DummyIQChannel.h
index 3f896e0..5ec68ca 100644
--- a/Swiften/Queries/DummyIQChannel.h
+++ b/Swiften/Queries/DummyIQChannel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010 Isode Limited.
+ * Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
@@ -15,7 +15,7 @@ namespace Swift {
public:
DummyIQChannel() {}
- virtual void sendIQ(boost::shared_ptr<IQ> iq) {
+ virtual void sendIQ(std::shared_ptr<IQ> iq) {
iqs_.push_back(iq);
}
@@ -27,6 +27,6 @@ namespace Swift {
return true;
}
- std::vector<boost::shared_ptr<IQ> > iqs_;
+ std::vector<std::shared_ptr<IQ> > iqs_;
};
}