Class: Quickfix::DatedDate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

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

Constructor Details

#initialize(data = nil) ⇒ DatedDate

Returns a new instance of DatedDate.



11823
11824
11825
11826
11827
11828
11829
# File 'lib/quickfix_fields.rb', line 11823

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

Class Method Details

.fieldObject



11820
11821
11822
# File 'lib/quickfix_fields.rb', line 11820

def DatedDate.field
  return 873
end