Class: Quickfix::LateIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LateIndicator

Returns a new instance of LateIndicator.



13188
13189
13190
13191
13192
13193
13194
# File 'lib/quickfix_fields.rb', line 13188

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