Class: Quickfix::MDEntrySize

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MDEntrySize

Returns a new instance of MDEntrySize.



3412
3413
3414
3415
3416
3417
3418
# File 'lib/quickfix_fields.rb', line 3412

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