Class: Quickfix::DatedDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DatedDate

Returns a new instance of DatedDate.



4387
4388
4389
4390
4391
4392
4393
# File 'lib/quickfix_fields.rb', line 4387

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

Class Method Details

.fieldObject



4384
4385
4386
# File 'lib/quickfix_fields.rb', line 4384

def DatedDate.field
	return 873
end