Class: Quickfix::NoLotTypeRules

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoLotTypeRules

Returns a new instance of NoLotTypeRules.



16412
16413
16414
16415
16416
16417
16418
# File 'lib/quickfix_fields.rb', line 16412

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