1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

File: Update documentation

This commit is contained in:
reuk 2022-03-18 18:56:45 +00:00
parent fe3d42025b
commit 8fad301c13
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -381,21 +381,21 @@ public:
//==============================================================================
/** Returns the last modification time of this file.
@returns the time, or an invalid time if the file doesn't exist.
@returns the time, or the Unix Epoch if the file doesn't exist.
@see setLastModificationTime, getLastAccessTime, getCreationTime
*/
Time getLastModificationTime() const;
/** Returns the last time this file was accessed.
@returns the time, or an invalid time if the file doesn't exist.
@returns the time, or the Unix Epoch if the file doesn't exist.
@see setLastAccessTime, getLastModificationTime, getCreationTime
*/
Time getLastAccessTime() const;
/** Returns the time that this file was created.
@returns the time, or an invalid time if the file doesn't exist.
@returns the time, or the Unix Epoch if the file doesn't exist.
@see getLastModificationTime, getLastAccessTime
*/
Time getCreationTime() const;