Class: Quickfix::PutOrCall

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PutOrCall

Returns a new instance of PutOrCall.



3022
3023
3024
3025
3026
3027
3028
# File 'lib/quickfix_fields.rb', line 3022

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