X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcinema.cc;h=7e13b50aea775ef4900b637e145913aa742c92a8;hb=ff639b3cf30afcc097bfd21d39c8d15f466cadd6;hp=1902f15f9f4f091433f3fc10e12c8f4b5a301381;hpb=f41818f14369f170475b7f2bde1a2dd856517b14;p=dcpomatic.git diff --git a/src/lib/cinema.cc b/src/lib/cinema.cc index 1902f15f9..7e13b50ae 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. @@ -18,26 +18,29 @@ */ + #include "cinema.h" #include "screen.h" #include "dcpomatic_assert.h" #include #include #include -#include #include + using std::list; using std::string; -using boost::shared_ptr; +using std::shared_ptr; +using std::make_shared; 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 ()); } @@ -56,9 +59,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 (make_shared(i)); } } @@ -67,7 +69,7 @@ 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); } @@ -76,7 +78,7 @@ Cinema::as_xml (xmlpp::Element* parent) const 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")); } }