Class: Quickfix::RegistID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RegistID

Returns a new instance of RegistID.



7663
7664
7665
7666
7667
7668
7669
# File 'lib/quickfix_fields.rb', line 7663

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

Class Method Details

.fieldObject



7660
7661
7662
# File 'lib/quickfix_fields.rb', line 7660

def RegistID.field
	return 513
end