Class: Quickfix::SendingDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SendingDate

Returns a new instance of SendingDate.



3165
3166
3167
3168
3169
3170
3171
# File 'lib/quickfix_fields.rb', line 3165

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