type=class
superclass=Delegator
included=
extended=
library=delegate

[[c:Delegator]] 饹Ѿץʥ᥽åɰѾ¸ݥ饹

Ѿ˻ꤵ줿֥Ȥإ᥽åɤμ¹ԤѾޤ

:

//emlist{
require 'delegate'

foo = Object.new
def foo.test
  p 25
end
foo2 = SimpleDelegator.new(foo)
foo2.test   # => 25
//}
