summaryrefslogtreecommitdiff
path: root/sample/soap/sampleStruct/iSampleStruct.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/soap/sampleStruct/iSampleStruct.rb')
-rw-r--r--sample/soap/sampleStruct/iSampleStruct.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/sample/soap/sampleStruct/iSampleStruct.rb b/sample/soap/sampleStruct/iSampleStruct.rb
deleted file mode 100644
index 399ea52eb8..0000000000
--- a/sample/soap/sampleStruct/iSampleStruct.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-require 'soap/mapping'
-
-SampleStructServiceNamespace = 'http://tempuri.org/sampleStructService'
-
-class SampleStruct; include SOAP::Marshallable
- attr_accessor :sampleArray
- attr_accessor :date
-
- def initialize
- @sampleArray = SampleArray[ "cyclic", self ]
- @date = DateTime.now
- end
-
- def wrap( rhs )
- @sampleArray = SampleArray[ "wrap", rhs.dup ]
- @date = DateTime.now
- self
- end
-end
-
-class SampleArray < Array; include SOAP::Marshallable
-end