let spce keep the messages in a factory #14
Like Integers and addresses before, messages are now in a factory Factories keep allocated (uninitialised) objects, had to make init public to call it
This commit is contained in:
@ -27,12 +27,12 @@ module Parfait
|
||||
16
|
||||
end
|
||||
|
||||
def initialize( next_m )
|
||||
def initialize( )
|
||||
super()
|
||||
self.next_message = next_m
|
||||
self.frame = NamedList.new()
|
||||
self.arguments = NamedList.new()
|
||||
end
|
||||
public :initialize
|
||||
|
||||
def set_receiver(rec)
|
||||
self.receiver = rec
|
||||
|
Reference in New Issue
Block a user