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

Docs: Replace doxygen preprocessor conditionals with @cond and @endconds

This commit is contained in:
Anthony Nicholls 2025-07-18 09:59:35 +01:00 committed by Sudara
parent 26e8d81380
commit 36d07a6ce3
136 changed files with 420 additions and 449 deletions

View file

@ -49,9 +49,9 @@ namespace juce
class JUCE_API InAppPurchases : private DeletedAtShutdown
{
public:
#ifndef DOXYGEN
/** @cond */
JUCE_DECLARE_SINGLETON_INLINE (InAppPurchases, false)
#endif
/** @endcond */
//==============================================================================
/** Represents a product available in the store. */
@ -265,7 +265,7 @@ public:
void cancelDownloads (const Array<Download*>& downloads);
//==============================================================================
#ifndef DOXYGEN
/** @cond */
[[deprecated ("On Android, it is no longer necessary to specify whether the product being purchased is a subscription "
"and only a single subscription can be upgraded/downgraded. Use the updated purchaseProduct method "
"which takes a single String argument.")]]
@ -278,14 +278,14 @@ public:
upgradeOrDowngradeFromSubscriptionsWithProductIdentifiers[0],
creditForUnusedSubscription);
}
#endif
/** @endcond */
private:
//==============================================================================
#ifndef DOXYGEN
/** @cond */
InAppPurchases();
~InAppPurchases();
#endif
/** @endcond */
//==============================================================================
ListenerList<Listener> listeners;