summaryrefslogtreecommitdiff
path: root/src/dcp.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-25 20:52:58 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-25 20:52:58 +0100
commitee7187c25d83a47a106493e66b89888eca6d4344 (patch)
tree68ee60efb9044bf5a201925f89c9f8ddbfe7df81 /src/dcp.h
parentc597fcee56abc2e6d92e3cfbbfe3c7817d9d0cbe (diff)
Use signals2 rather than sigc++
Diffstat (limited to 'src/dcp.h')
-rw-r--r--src/dcp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dcp.h b/src/dcp.h
index fcb85168..d4f6aff9 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -27,7 +27,7 @@
#include <string>
#include <vector>
#include <boost/shared_ptr.hpp>
-#include <sigc++/sigc++.h>
+#include <boost/signals2.hpp>
#include "types.h"
namespace xmlpp {
@@ -153,7 +153,7 @@ public:
/** Emitted with a parameter between 0 and 1 to indicate progress
* for long jobs.
*/
- sigc::signal1<void, float> Progress;
+ boost::signals2::signal<void (float)> Progress;
private: