Class: Quickfix::ReferenceEntityType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ReferenceEntityType

Returns a new instance of ReferenceEntityType.



25616
25617
25618
25619
25620
25621
25622
# File 'lib/quickfix_fields.rb', line 25616

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