mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
20 lines
391 B
Ruby
20 lines
391 B
Ruby
# urn:example.com:simpletype-rpc-type
|
|
class Version_struct
|
|
@@schema_type = "version_struct"
|
|
@@schema_ns = "urn:example.com:simpletype-rpc-type"
|
|
|
|
attr_accessor :version
|
|
attr_accessor :msg
|
|
|
|
def initialize(version = nil, msg = nil)
|
|
@version = version
|
|
@msg = msg
|
|
end
|
|
end
|
|
|
|
# urn:example.com:simpletype-rpc-type
|
|
module Versions
|
|
C_16 = "1.6"
|
|
C_18 = "1.8"
|
|
C_19 = "1.9"
|
|
end
|