Class: ODDB::OdbaExporter::AcscTable

Inherits:
Table show all
Defined in:
ext/export/src/oddbdat.rb

Constant Summary collapse

FILENAME =
's41x'

Constants inherited from Table

Table::CRLF

Instance Method Summary collapse

Methods inherited from Table

#filename

Instance Method Details

#lines(package) ⇒ Object



79
80
81
82
83
84
85
# File 'ext/export/src/oddbdat.rb', line 79

def lines(package)
	lines = []
	package.active_agents.each_with_index { |act, idx|
		lines.push(AcscLine.new(package, act, idx))
	}
	lines
end