blob: d7fcb1fd095cf7d07a81d3cf91bb29a208f160e4 [file] [log] [blame]
module Openwsman
class XmlDoc
#
# Assume XmlDoc.foo means XmlDoc.body.foo
#
def method_missing method, *args # :nodoc:
self.body.send method,*args
end
end
end