Class: Quickfix::ExecType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ExecType

Returns a new instance of ExecType.



2359
2360
2361
2362
2363
2364
2365
# File 'lib/quickfix_fields.rb', line 2359

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

Class Method Details

.fieldObject



2356
2357
2358
# File 'lib/quickfix_fields.rb', line 2356

def ExecType.field
  return 150
end