Class: Quickfix::EncodedSecurityDescLen

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ EncodedSecurityDescLen

Returns a new instance of EncodedSecurityDescLen.



4426
4427
4428
4429
4430
4431
4432
# File 'lib/quickfix_fields.rb', line 4426

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

Class Method Details

.fieldObject



4423
4424
4425
# File 'lib/quickfix_fields.rb', line 4423

def EncodedSecurityDescLen.field
	return 350
end