Class: Quickfix::OpenClose

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OpenClose

Returns a new instance of OpenClose.



11017
11018
11019
11020
11021
11022
11023
# File 'lib/quickfix_fields.rb', line 11017

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

Class Method Details

.fieldObject



11014
11015
11016
# File 'lib/quickfix_fields.rb', line 11014

def OpenClose.field
	return 77
end