Class: Quickfix::NoDates

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoDates



7897
7898
7899
7900
7901
7902
7903
# File 'lib/quickfix_fields.rb', line 7897

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