class Nidyx::ObjCModel

Public Class Methods

new(interface, implementation) click to toggle source
# File lib/nidyx/objc/model.rb, line 3
def initialize(interface, implementation)
  @interface = interface
  @implementation = implementation
end

Public Instance Methods

files() click to toggle source
# File lib/nidyx/objc/model.rb, line 8
def files
  [@interface, @implementation]
end