/* Copyright (C) 2016-2021 Carl Hetherington This file is part of DCP-o-matic. DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with DCP-o-matic. If not, see . */ #include "rgba.h" #include LIBDCP_DISABLE_WARNINGS #include LIBDCP_ENABLE_WARNINGS #include using std::string; using boost::lexical_cast; RGBA::RGBA (cxml::ConstNodePtr node) { r = node->number_child("R"); g = node->number_child("G"); b = node->number_child("B"); a = node->number_child("A"); } void RGBA::as_xml (xmlpp::Node* parent) const { parent->add_child("R")->add_child_text(lexical_cast(int(r))); parent->add_child("G")->add_child_text(lexical_cast(int(g))); parent->add_child("B")->add_child_text(lexical_cast(int(b))); parent->add_child("A")->add_child_text(lexical_cast(int(a))); } bool RGBA::operator< (RGBA const & other) const { if (r != other.r) { return r < other.r; } if (g != other.g) { return g < other.g; } if (b != other.b) { return b < other.b; } return a < other.a; }