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

Added missing documentation tags

This commit is contained in:
ed 2020-06-27 17:26:44 +01:00
parent fa4fde08ec
commit 4855f52e4d
7 changed files with 33 additions and 1 deletions

View file

@ -24,7 +24,11 @@ namespace juce
{
//==============================================================================
/** Describes the attributes of a file or folder. */
/**
Describes the attributes of a file or folder.
@tags{Core}
*/
class DirectoryEntry final
{
public:
@ -80,6 +84,8 @@ inline const DirectoryEntry& operator* (const DirectoryEntry& e) noexcept { retu
if (entry.isHidden())
hiddenFiles.push_back (entry.getFile());
@endcode
@tags{Core}
*/
class RangedDirectoryIterator final
{