diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-25 20:52:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-25 20:52:58 +0100 |
| commit | ee7187c25d83a47a106493e66b89888eca6d4344 (patch) | |
| tree | 68ee60efb9044bf5a201925f89c9f8ddbfe7df81 /src/util.h | |
| parent | c597fcee56abc2e6d92e3cfbbfe3c7817d9d0cbe (diff) | |
Use signals2 rather than sigc++
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ #include <string> #include <stdint.h> -#include <sigc++/sigc++.h> +#include <boost/signals2.hpp> #include <openjpeg.h> #include "types.h" @@ -42,7 +42,7 @@ extern std::string make_uuid (); * progress; the parameter will start at 0.5 and proceed to 1. * @return Digest. */ -extern std::string make_digest (std::string filename, sigc::signal1<void, float>* progress); +extern std::string make_digest (std::string filename, boost::signals2::signal<void (float)>* progress); extern std::string content_kind_to_string (ContentKind kind); extern ContentKind content_kind_from_string (std::string kind); |
