Class: Quickfix::RndPx

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



13354
13355
13356
# File 'lib/quickfix_fields.rb', line 13354

def RndPx.field
	return 991
end