Class: Quickfix::IOIRefID

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ IOIRefID

Returns a new instance of IOIRefID.



1189
1190
1191
1192
1193
1194
1195
# File 'lib/quickfix_fields.rb', line 1189

def initialize(data = nil)
	if( data == nil )
		super(26)
	else
		super(26, data)
	end
end