Class: Quickfix::LocateReqd

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LocateReqd

Returns a new instance of LocateReqd.



2034
2035
2036
2037
2038
2039
2040
# File 'lib/quickfix_fields.rb', line 2034

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