Class: Quickfix::EncodedSubjectLen

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

Returns a new instance of EncodedSubjectLen.



4478
4479
4480
4481
4482
4483
4484
# File 'lib/quickfix_fields.rb', line 4478

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

Class Method Details

.fieldObject



4475
4476
4477
# File 'lib/quickfix_fields.rb', line 4475

def EncodedSubjectLen.field
  return 356
end