From: Carl Hetherington Date: Thu, 7 Jan 2016 16:56:59 +0000 (+0000) Subject: More build fixes. X-Git-Tag: v2.6.14~3 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=0e861bf55a2a44cb781395cd41d720bbe40879f2 More build fixes. --- diff --git a/src/lib/image_filename_sorter.cc b/src/lib/image_filename_sorter.cc index 112077f55..e23a551b4 100644 --- a/src/lib/image_filename_sorter.cc +++ b/src/lib/image_filename_sorter.cc @@ -18,69 +18,70 @@ */ #include "raw_convert.h" +#include "image_filename_sorter.h" #include #include #include -class ImageFilenameSorter +using std::list; + +bool +ImageFilenameSorter::operator() (boost::filesystem::path a, boost::filesystem::path b) { -public: - bool operator() (boost::filesystem::path a, boost::filesystem::path b) - { - std::list na = extract_numbers (a); - std::list nb = extract_numbers (b); - if (na.empty() || nb.empty()) { - return a.string() < b.string(); - } + std::list na = extract_numbers (a); + std::list nb = extract_numbers (b); + if (na.empty() || nb.empty()) { + return a.string() < b.string(); + } - if (na.size() != nb.size()) { - /* Just use the first one */ - return na.front() < nb.front(); - } + if (na.size() != nb.size()) { + /* Just use the first one */ + return na.front() < nb.front(); + } - std::list::const_iterator i = na.begin (); - std::list::const_iterator j = nb.begin (); + std::list::const_iterator i = na.begin (); + std::list::const_iterator j = nb.begin (); - while (i != na.end()) { - if (*i != *j) { - return *i < *j; - } - ++i; - ++j; + while (i != na.end()) { + if (*i != *j) { + return *i < *j; } - - /* All the same */ - return false; + ++i; + ++j; } -private: - std::list extract_numbers (boost::filesystem::path p) - { - p = p.leaf (); - - std::list numbers; - - std::string current; - for (size_t i = 0; i < p.string().size(); ++i) { - if (isdigit (p.string()[i])) { - current += p.string()[i]; - } else { - if (!current.empty ()) { - numbers.push_back (current); - current.clear (); - } - } - } + /* All the same */ + return false; - if (!current.empty ()) { - numbers.push_back (current); - } +} - std::list numbers_as_int; - BOOST_FOREACH (std::string i, numbers) { - numbers_as_int.push_back (raw_convert (i)); +list +ImageFilenameSorter::extract_numbers (boost::filesystem::path p) +{ + p = p.leaf (); + + std::list numbers; + + std::string current; + for (size_t i = 0; i < p.string().size(); ++i) { + if (isdigit (p.string()[i])) { + current += p.string()[i]; + } else { + if (!current.empty ()) { + numbers.push_back (current); + current.clear (); + } } + } + + if (!current.empty ()) { + numbers.push_back (current); + } - return numbers_as_int; + std::list numbers_as_int; + BOOST_FOREACH (std::string i, numbers) { + numbers_as_int.push_back (raw_convert (i)); } -}; + + return numbers_as_int; +}