Class: Quickfix::AllocAccount

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ AllocAccount

Returns a new instance of AllocAccount.



1722
1723
1724
1725
1726
1727
1728
# File 'lib/quickfix_fields.rb', line 1722

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

Class Method Details

.fieldObject



1719
1720
1721
# File 'lib/quickfix_fields.rb', line 1719

def AllocAccount.field
	return 79
end