Class: Quickfix::MaxFloor

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MaxFloor

Returns a new instance of MaxFloor.



2008
2009
2010
2011
2012
2013
2014
# File 'lib/quickfix_fields.rb', line 2008

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