Class: Quickfix::MakeWholeDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MakeWholeDate

Returns a new instance of MakeWholeDate.



68347
68348
68349
68350
68351
68352
68353
# File 'lib/quickfix_fields.rb', line 68347

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