Class: Quickfix::RefSeqNum

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

Returns a new instance of RefSeqNum.



123
124
125
126
127
128
129
# File 'lib/quickfix_fields.rb', line 123

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

Class Method Details

.fieldObject



120
121
122
# File 'lib/quickfix_fields.rb', line 120

def RefSeqNum.field
  return 45
end