summaryrefslogtreecommitdiff
path: root/sample/soap/sampleStruct/sampleStruct.rb
blob: 394c1bff09d8173d3a524b5bf0553ad072037c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'iSampleStruct'

class SampleStructService
  def hi(struct)
    ack = SampleStruct.new
    ack.wrap(struct)
    ack
  end
end

if __FILE__ == $0
  p SampleStructService.new.hi(SampleStruct.new)
end