Class: Quickfix::UnderlyingTimeUnit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingTimeUnit

Returns a new instance of UnderlyingTimeUnit.



13461
13462
13463
13464
13465
13466
13467
# File 'lib/quickfix_fields.rb', line 13461

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