Class: Quickfix::RndPx

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RndPx

Returns a new instance of RndPx.



13357
13358
13359
13360
13361
13362
13363
# File 'lib/quickfix_fields.rb', line 13357

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