Returns the number of files dropped during the event
| 51 | const std::vector<fs::path>& getFiles() const { return mModifiedFiles; } |
| 52 | //! Returns the number of files dropped during the event |
| 53 | size_t getNumFiles() const { return mModifiedFiles.size(); } |
| 54 | //! Returns the absolute filepath for file number \a index. |
| 55 | const fs::path& getFile( size_t index = 0 ) const { return mModifiedFiles.at( index ); } |
| 56 |