Class: Quickfix::LegNumber

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegNumber

Returns a new instance of LegNumber.



17101
17102
17103
17104
17105
17106
17107
# File 'lib/quickfix_fields.rb', line 17101

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

Class Method Details

.fieldObject



17098
17099
17100
# File 'lib/quickfix_fields.rb', line 17098

def LegNumber.field
	return 1152
end