Class: Quickfix::ExecType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExecType

Returns a new instance of ExecType.



12642
12643
12644
12645
12646
12647
12648
# File 'lib/quickfix_fields.rb', line 12642

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

Class Method Details

.fieldObject



12639
12640
12641
# File 'lib/quickfix_fields.rb', line 12639

def ExecType.field
  return 150
end