Class: Quickfix::OrigTime

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrigTime

Returns a new instance of OrigTime.



12616
12617
12618
12619
12620
12621
12622
# File 'lib/quickfix_fields.rb', line 12616

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

Class Method Details

.fieldObject



12613
12614
12615
# File 'lib/quickfix_fields.rb', line 12613

def OrigTime.field
  return 42
end