Class: Quickfix::MaxShow

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MaxShow



3139
3140
3141
3142
3143
3144
3145
# File 'lib/quickfix_fields.rb', line 3139

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