Class: Quickfix::OrdType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrdType

Returns a new instance of OrdType.



14189
14190
14191
14192
14193
14194
14195
# File 'lib/quickfix_fields.rb', line 14189

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

Class Method Details

.fieldObject



14186
14187
14188
# File 'lib/quickfix_fields.rb', line 14186

def OrdType.field
  return 40
end