Class: Quickfix::OpenClose

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

Returns a new instance of OpenClose.



1696
1697
1698
1699
1700
1701
1702
# File 'lib/quickfix_fields.rb', line 1696

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

Class Method Details

.fieldObject



1693
1694
1695
# File 'lib/quickfix_fields.rb', line 1693

def OpenClose.field
  return 77
end