Class: Quickfix::DKReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DKReason

Returns a new instance of DKReason.



2151
2152
2153
2154
2155
2156
2157
# File 'lib/quickfix_fields.rb', line 2151

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