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.



19
20
21
# File 'lib/rbCFTypes.rb', line 19

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

Instance Attribute Details

#valueObject

value of the type



17
18
19
# File 'lib/rbCFTypes.rb', line 17

def value
  @value
end

Instance Method Details

#to_binary(bplist) ⇒ Object



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

def to_binary(bplist) end

#to_xml(parser) ⇒ Object



23
24
# File 'lib/rbCFTypes.rb', line 23

def to_xml(parser)
end