blob: 44db4dfd39c2838e8b516e2b4e4d7708cd028ffc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module Axlsx
#A collection of Cfvo objects that initializes with the required
#first two items
class Cfvos < SimpleTypedList
def initialize
super(Cfvo)
end
# Serialize the Cfvo object
# @param [String] str
# @return [String]
def to_xml_string(str = '')
each { |cfvo| cfvo.to_xml_string(str) }
end
end
end
|