Class: Quickfix::Symbol

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) ⇒ Symbol

Returns a new instance of Symbol.



1449
1450
1451
1452
1453
1454
1455
# File 'lib/quickfix_fields.rb', line 1449

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

Class Method Details

.fieldObject



1446
1447
1448
# File 'lib/quickfix_fields.rb', line 1446

def Symbol.field
	return 55
end