Class: Quickfix::SecurityID

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) ⇒ SecurityID

Returns a new instance of SecurityID.



1410
1411
1412
1413
1414
1415
1416
# File 'lib/quickfix_fields.rb', line 1410

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

Class Method Details

.fieldObject



1407
1408
1409
# File 'lib/quickfix_fields.rb', line 1407

def SecurityID.field
	return 48
end