Class: Quickfix::IOINaturalFlag

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BoolField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ IOINaturalFlag

Returns a new instance of IOINaturalFlag.



2164
2165
2166
2167
2168
2169
2170
# File 'lib/quickfix_fields.rb', line 2164

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

Class Method Details

.fieldObject



2161
2162
2163
# File 'lib/quickfix_fields.rb', line 2161

def IOINaturalFlag.field
  return 130
end