| Constructor | Description |
|---|---|
| FileList() | Default constructor. Doesn't do anything. |
| FileList(int n) | Intialize the FileList with n empty Files |
| FileList(const QStringList &files) | Initialize the FileList with a list of strings. Each string should have the format "filename[key1=value1, key2=value2, ... keyN=valueN]" |
| FileList(const QList<File> &files) | Initialize the FileList from a list of files. |