File: README

package info (click to toggle)
icmake 13.05.01-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,132 kB
  • sloc: cpp: 11,595; fortran: 883; makefile: 853; sh: 546; pascal: 342
file content (17 lines) | stat: -rw-r--r-- 560 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
The class Dependencies is the workhorse class.

Its constructor determines the parser- and scanner-dirs from the icmconf file,
Next it adds all directory names from CLASSES to the d_directory string
vector, so that each directory name is stored only once. 

Once all directories have been determined there are size = d_directory.size()
directory names.

The matrix d_dependency is a bool-matrix of dimension size x size. If
element[r][c] is true then class [c] depends on (= includes) class[r]. The
the function 'dependsOn' determines these dependencies.