Class: Quickfix::PegMoveType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PegMoveType



11329
11330
11331
11332
11333
11334
11335
# File 'lib/quickfix_fields.rb', line 11329

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