Class: Quickfix::ExDestination

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExDestination

Returns a new instance of ExDestination.



13682
13683
13684
13685
13686
13687
13688
# File 'lib/quickfix_fields.rb', line 13682

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

Class Method Details

.fieldObject



13679
13680
13681
# File 'lib/quickfix_fields.rb', line 13679

def ExDestination.field
	return 100
end