Class: Quickfix::WireReference

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ WireReference

Returns a new instance of WireReference.



61626
61627
61628
61629
61630
61631
61632
# File 'lib/quickfix_fields.rb', line 61626

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