| 19 | bool FileType::isArchive() const { return _fileType == FT_ARCHIVE; } |
| 20 | bool FileType::isObject() const { return _fileType == FT_OBJECT; } |
| 21 | bool FileType::isExecutable() const { return _fileType == FT_EXECUTABLE; } |
| 22 | FileType::eFileType FileType::getID() const { return _fileType; } |
| 23 | |
| 24 | void FileType::setIsUnknown() { _fileType = FT_UNKNOWN; } |
no outgoing calls