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

Add missing JUCE_API annotations

This commit is contained in:
reuk 2025-03-27 12:36:59 +00:00
parent 99b63cf038
commit 20b5e92559
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -43,7 +43,7 @@ JUCE_BEGIN_IGNORE_DEPRECATION_WARNINGS
@tags{Core}
*/
class DirectoryEntry final
class JUCE_API DirectoryEntry final
{
public:
/** The path to a file or folder. */
@ -107,7 +107,7 @@ inline const DirectoryEntry& operator* (const DirectoryEntry& e) noexcept { retu
@tags{Core}
*/
class RangedDirectoryIterator final
class JUCE_API RangedDirectoryIterator final
{
public:
using difference_type = std::ptrdiff_t;

View file

@ -196,7 +196,7 @@ public:
//==============================================================================
/** Can be used to save and restore the editor's caret position, selection state, etc. */
struct State
struct JUCE_API State
{
/** Creates an object containing the state of the given editor. */
State (const CodeEditorComponent&);
@ -253,7 +253,7 @@ public:
struct JUCE_API ColourScheme
{
/** Defines a colour for a token type */
struct TokenType
struct JUCE_API TokenType
{
String name;
Colour colour;