bool ControlParameter::operator==(const ControlParameter &control) { return m_type == control.getType() && m_controllerValue == control.getControllerValue() && m_min == control.getMin() && m_max == control.getMax(); }
ControlParameter::ControlParameter(const ControlParameter &control): XmlExportable(), m_name(control.getName()), m_type(control.getType()), m_description(control.getDescription()), m_min(control.getMin()), m_max(control.getMax()), m_default(control.getDefault()), m_controllerValue(control.getControllerValue()), m_colourIndex(control.getColourIndex()), m_ipbPosition(control.getIPBPosition()) { }