Class: Quickfix::StatsType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StatsType

Returns a new instance of StatsType.



15684
15685
15686
15687
15688
15689
15690
# File 'lib/quickfix_fields.rb', line 15684

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