Class: Quickfix::ProcessCode

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

Returns a new instance of ProcessCode.



1748
1749
1750
1751
1752
1753
1754
# File 'lib/quickfix_fields.rb', line 1748

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

Class Method Details

.fieldObject



1745
1746
1747
# File 'lib/quickfix_fields.rb', line 1745

def ProcessCode.field
  return 81
end