class Samovar::Flags

def initialize(text)

def initialize(text)
	@text = text
	
	@ordered = text.split(/\s+\|\s+/).map{|part| Flag.new(part)}
end