Class: Quickfix::SecureDataLen

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecureDataLen

Returns a new instance of SecureDataLen.



227
228
229
230
231
232
233
# File 'lib/quickfix_fields.rb', line 227

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