Class: Quickfix::TimeBracket

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TimeBracket

Returns a new instance of TimeBracket.



12720
12721
12722
12723
12724
12725
12726
# File 'lib/quickfix_fields.rb', line 12720

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