Class: Quickfix::DeskType

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

Returns a new instance of DeskType.



13864
13865
13866
13867
13868
13869
13870
# File 'lib/quickfix_fields.rb', line 13864

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

Class Method Details

.fieldObject



13861
13862
13863
# File 'lib/quickfix_fields.rb', line 13861

def DeskType.field
	return 1033
end