Class: Quickfix::ExecID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExecID

Returns a new instance of ExecID.



9509
9510
9511
9512
9513
9514
9515
# File 'lib/quickfix_fields.rb', line 9509

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

Class Method Details

.fieldObject



9506
9507
9508
# File 'lib/quickfix_fields.rb', line 9506

def ExecID.field
	return 17
end