Class: Quickfix::ValueCheckType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ValueCheckType

Returns a new instance of ValueCheckType.



24459
24460
24461
24462
24463
24464
24465
# File 'lib/quickfix_fields.rb', line 24459

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