Browse Source

File: Update documentation

pull/22/head
reuk 3 years ago
parent
commit
8fad301c13
No known key found for this signature in database GPG Key ID: FCB43929F012EE5C
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      modules/juce_core/files/juce_File.h

+ 3
- 3
modules/juce_core/files/juce_File.h View File

@@ -381,21 +381,21 @@ public:
//============================================================================== //==============================================================================
/** Returns the last modification time of this file. /** 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 @see setLastModificationTime, getLastAccessTime, getCreationTime
*/ */
Time getLastModificationTime() const; Time getLastModificationTime() const;
/** Returns the last time this file was accessed. /** 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 @see setLastAccessTime, getLastModificationTime, getCreationTime
*/ */
Time getLastAccessTime() const; Time getLastAccessTime() const;
/** Returns the time that this file was created. /** 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 @see getLastModificationTime, getLastAccessTime
*/ */
Time getCreationTime() const; Time getCreationTime() const;


Loading…
Cancel
Save