Class: Quickfix::MsgSeqNum

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

Returns a new instance of MsgSeqNum.



71
72
73
74
75
76
77
# File 'lib/quickfix_fields.rb', line 71

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

Class Method Details

.fieldObject



68
69
70
# File 'lib/quickfix_fields.rb', line 68

def MsgSeqNum.field
	return 34
end