Class: Quickfix::SymbolPositionNumber

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SymbolPositionNumber

Returns a new instance of SymbolPositionNumber.



79293
79294
79295
79296
79297
79298
79299
# File 'lib/quickfix_fields.rb', line 79293

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