Class: Quickfix::RefSeqNum

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RefSeqNum

Returns a new instance of RefSeqNum.



1345
1346
1347
1348
1349
1350
1351
# File 'lib/quickfix_fields.rb', line 1345

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

Class Method Details

.fieldObject



1342
1343
1344
# File 'lib/quickfix_fields.rb', line 1342

def RefSeqNum.field
	return 45
end