Class: Quickfix::IndexAnnexDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ IndexAnnexDate

Returns a new instance of IndexAnnexDate.



25655
25656
25657
25658
25659
25660
25661
# File 'lib/quickfix_fields.rb', line 25655

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