class Samovar::Table

def << row

def << row
	@rows << row
	
	if row.respond_to?(:parse)
		@parser << row
	end
end