Class: Quickfix::ExecInst

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

Returns a new instance of ExecInst.



1085
1086
1087
1088
1089
1090
1091
# File 'lib/quickfix_fields.rb', line 1085

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

Class Method Details

.fieldObject



1082
1083
1084
# File 'lib/quickfix_fields.rb', line 1082

def ExecInst.field
  return 18
end