Class: CFPropertyList::CFType

Inherits:
Object
  • Object
show all
Defined in:
lib/rbCFTypes.rb

Overview

This class defines the base class for all CFType classes

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value = nil) ⇒ CFType

Returns a new instance of CFType.



26
27
28
# File 'lib/rbCFTypes.rb', line 26

def initialize(value=nil)
  @value = value
end

Instance Attribute Details

#valueObject

value of the type



24
25
26
# File 'lib/rbCFTypes.rb', line 24

def value
  @value
end

Instance Method Details

#to_binary(bplist) ⇒ Object



33
# File 'lib/rbCFTypes.rb', line 33

def to_binary(bplist) end

#to_xml(parser) ⇒ Object



30
31
# File 'lib/rbCFTypes.rb', line 30

def to_xml(parser)
end