Class: Quickfix::CrossPercent

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CrossPercent

Returns a new instance of CrossPercent.



5843
5844
5845
5846
5847
5848
5849
# File 'lib/quickfix_fields.rb', line 5843

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

Class Method Details

.fieldObject



5840
5841
5842
# File 'lib/quickfix_fields.rb', line 5840

def CrossPercent.field
	return 413
end