Class: Quickfix::BeginSeqNo

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

Returns a new instance of BeginSeqNo.



6
7
8
9
10
11
12
# File 'lib/quickfix_fields.rb', line 6

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

Class Method Details

.fieldObject



3
4
5
# File 'lib/quickfix_fields.rb', line 3

def BeginSeqNo.field
  return 7
end