Class: Quickfix::MDEntryDate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcDateField

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

Constructor Details

#initialize(data = nil) ⇒ MDEntryDate

Returns a new instance of MDEntryDate.



3425
3426
3427
3428
3429
3430
3431
# File 'lib/quickfix_fields.rb', line 3425

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

Class Method Details

.fieldObject



3422
3423
3424
# File 'lib/quickfix_fields.rb', line 3422

def MDEntryDate.field
  return 272
end