Class: Quickfix::PegOffsetType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PegOffsetType

Returns a new instance of PegOffsetType.



11342
11343
11344
11345
11346
11347
11348
# File 'lib/quickfix_fields.rb', line 11342

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