Class: Quickfix::OrigTime

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcTimeStampField

#<, #==, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ OrigTime

Returns a new instance of OrigTime.



1358
1359
1360
1361
1362
1363
1364
# File 'lib/quickfix_fields.rb', line 1358

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

Class Method Details

.fieldObject



1355
1356
1357
# File 'lib/quickfix_fields.rb', line 1355

def OrigTime.field
  return 42
end