class CFPropertyList::CFReal

This class holds float values

def to_binary(bplist)

convert to binary
def to_binary(bplist)
  bplist.num_to_binary(self)
end

def to_xml(parser)

convert to XML
def to_xml(parser)
  n = parser.new_node('real')
  n = parser.append_node(n, parser.new_text(@value.to_s))
  n
end