Class: Quickfix::LegRefID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegRefID

Returns a new instance of LegRefID.



8794
8795
8796
8797
8798
8799
8800
# File 'lib/quickfix_fields.rb', line 8794

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