Class: Quickfix::NoStrikes

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoStrikes

Returns a new instance of NoStrikes.



5349
5350
5351
5352
5353
5354
5355
# File 'lib/quickfix_fields.rb', line 5349

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