Class: Quickfix::NoDates

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoDates

Returns a new instance of NoDates.



11368
11369
11370
11371
11372
11373
11374
# File 'lib/quickfix_fields.rb', line 11368

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

Class Method Details

.fieldObject



11365
11366
11367
# File 'lib/quickfix_fields.rb', line 11365

def NoDates.field
	return 580
end