Class: Quickfix::RegistID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ RegistID

Returns a new instance of RegistID.



7052
7053
7054
7055
7056
7057
7058
# File 'lib/quickfix_fields.rb', line 7052

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

Class Method Details

.fieldObject



7049
7050
7051
# File 'lib/quickfix_fields.rb', line 7049

def RegistID.field
	return 513
end