Class: Quickfix::ExecRefID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ExecRefID

Returns a new instance of ExecRefID.



1098
1099
1100
1101
1102
1103
1104
# File 'lib/quickfix_fields.rb', line 1098

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

Class Method Details

.fieldObject



1095
1096
1097
# File 'lib/quickfix_fields.rb', line 1095

def ExecRefID.field
  return 19
end