Class: Quickfix::UnderlyingPutOrCall

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingPutOrCall

Returns a new instance of UnderlyingPutOrCall.



3984
3985
3986
3987
3988
3989
3990
# File 'lib/quickfix_fields.rb', line 3984

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