Class: Quickfix::ExecTransType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ExecTransType

Returns a new instance of ExecTransType.



1111
1112
1113
1114
1115
1116
1117
# File 'lib/quickfix_fields.rb', line 1111

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

Class Method Details

.fieldObject



1108
1109
1110
# File 'lib/quickfix_fields.rb', line 1108

def ExecTransType.field
	return 20
end