Class: Quickfix::HandlInst

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

Returns a new instance of HandlInst.



1124
1125
1126
1127
1128
1129
1130
# File 'lib/quickfix_fields.rb', line 1124

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

Class Method Details

.fieldObject



1121
1122
1123
# File 'lib/quickfix_fields.rb', line 1121

def HandlInst.field
	return 21
end