1
2
3
4
5
6
use group_v::GroupV;

pub trait ParameterGroup{
    fn add_parameters(&self, group: &mut GroupV);
    fn set(&mut self, other: &Self);
}