Class: Quickfix::LastCapacity

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastCapacity

Returns a new instance of LastCapacity.



1228
1229
1230
1231
1232
1233
1234
# File 'lib/quickfix_fields.rb', line 1228

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