| 1790 | return m_Content != ContentType::Invalid; |
| 1791 | } |
| 1792 | bool IGFD::FileType::isDir() const { |
| 1793 | return m_Content == ContentType::Directory; |
| 1794 | } |
| 1795 | bool IGFD::FileType::isFile() const { |
| 1796 | return m_Content == ContentType::File; |
| 1797 | } |
no outgoing calls
no test coverage detected