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/mxf_asset.cc | |
| parent | c597fcee56abc2e6d92e3cfbbfe3c7817d9d0cbe (diff) | |
Use signals2 rather than sigc++
Diffstat (limited to 'src/mxf_asset.cc')
| -rw-r--r-- | src/mxf_asset.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mxf_asset.cc b/src/mxf_asset.cc index ead97b9e..95412d0c 100644 --- a/src/mxf_asset.cc +++ b/src/mxf_asset.cc @@ -30,11 +30,13 @@ #include "util.h" #include "metadata.h" -using namespace std; -using namespace boost; +using std::string; +using std::list; +using boost::shared_ptr; +using boost::dynamic_pointer_cast; using namespace libdcp; -MXFAsset::MXFAsset (string directory, string file_name, sigc::signal1<void, float>* progress, int fps, int entry_point, int length) +MXFAsset::MXFAsset (string directory, string file_name, boost::signals2::signal<void (float)>* progress, int fps, int entry_point, int length) : Asset (directory, file_name) , _progress (progress) , _fps (fps) |
