X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcinema.cc;h=9a3b55e0aafe2dfc4ae8443ab33f2e1038938fd0;hb=444809fb888ed99803f2d19c94d3faef067cf348;hp=469cf2e6b2de20d56687e91ff42cf2d3c1f5a452;hpb=a8a0dfd1b21de6c0facf965ab119833ff6f790bf;p=dcpomatic.git diff --git a/src/lib/cinema.cc b/src/lib/cinema.cc index 469cf2e6b..9a3b55e0a 100644 --- a/src/lib/cinema.cc +++ b/src/lib/cinema.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2016 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -24,18 +24,19 @@ #include #include #include -#include #include using std::list; using std::string; -using boost::shared_ptr; +using std::shared_ptr; +using dcp::raw_convert; +using dcpomatic::Screen; Cinema::Cinema (cxml::ConstNodePtr node) : name (node->string_child ("Name")) , notes (node->optional_string_child("Notes").get_value_or("")) { - BOOST_FOREACH (cxml::ConstNodePtr i, node->node_children("Email")) { + for (auto i: node->node_children("Email")) { emails.push_back (i->content ()); } @@ -54,9 +55,8 @@ Cinema::Cinema (cxml::ConstNodePtr node) void Cinema::read_screens (cxml::ConstNodePtr node) { - list s = node->node_children ("Screen"); - for (list::iterator i = s.begin(); i != s.end(); ++i) { - add_screen (shared_ptr (new Screen (*i))); + for (auto i: node->node_children("Screen")) { + add_screen (shared_ptr(new Screen(i))); } } @@ -65,16 +65,16 @@ Cinema::as_xml (xmlpp::Element* parent) const { parent->add_child("Name")->add_child_text (name); - BOOST_FOREACH (string i, emails) { + for (auto i: emails) { parent->add_child("Email")->add_child_text (i); } parent->add_child("Notes")->add_child_text (notes); - parent->add_child("UTCOffsetHour")->add_child_text (dcp::raw_convert (_utc_offset_hour)); - parent->add_child("UTCOffsetMinute")->add_child_text (dcp::raw_convert (_utc_offset_minute)); + parent->add_child("UTCOffsetHour")->add_child_text (raw_convert (_utc_offset_hour)); + parent->add_child("UTCOffsetMinute")->add_child_text (raw_convert (_utc_offset_minute)); - BOOST_FOREACH (shared_ptr i, _screens) { + for (auto i: _screens) { i->as_xml (parent->add_child ("Screen")); } }