Class: Quickfix::OpenClose

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OpenClose

Returns a new instance of OpenClose.



1696
1697
1698
1699
1700
1701
1702
# File 'lib/quickfix_fields.rb', line 1696

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