Class: Quickfix::EncodedSubjectLen

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedSubjectLen

Returns a new instance of EncodedSubjectLen.



2944
2945
2946
2947
2948
2949
2950
# File 'lib/quickfix_fields.rb', line 2944

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

Class Method Details

.fieldObject



2941
2942
2943
# File 'lib/quickfix_fields.rb', line 2941

def EncodedSubjectLen.field
	return 356
end