Class: Quickfix::ModelType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ModelType

Returns a new instance of ModelType.



18986
18987
18988
18989
18990
18991
18992
# File 'lib/quickfix_fields.rb', line 18986

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