Class: Quickfix::NoBidComponents

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoBidComponents

Returns a new instance of NoBidComponents.



5245
5246
5247
5248
5249
5250
5251
# File 'lib/quickfix_fields.rb', line 5245

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