Classes | |
struct | ArgumentList |
Holds a list of command-line arguments, and provides useful methods for searching and operating on them. More... | |
struct | ArgumentList::Argument |
One of the arguments in an ArgumentList. More... | |
struct | ConsoleApplication |
Represents a the set of commands that a console app can perform, and provides helper functions for performing them. More... | |
struct | ConsoleApplication::Command |
Represents a command that can be executed if its command-line arguments are matched. More... | |
struct | NullCheckedInvocation |
Some helper methods for checking a callable object before invoking with the specified arguments. More... | |
struct | ScopeGuard< Fn > |
An easy way to ensure that a function is called at the end of the current scope. More... | |
class | Result |
Represents the 'success' or 'failure' of an operation, and holds an associated error message to describe the error when there's a failure. More... | |
class | RuntimePermissions |
class | Uuid |
A universally unique 128-bit identifier. More... | |
class | WindowsRegistry |
Contains some static helper functions for manipulating the MS Windows registry (Only available on Windows, of course!) More... | |
Macros | |
#define | JUCE_DECLARE_SCOPED_ENUM_BITWISE_OPERATORS(EnumType) |
Macro to enable bitwise operations for scoped enums (enum struct/class). | |
Typedefs | |
template<typename A , typename B > | |
using | DisableIfSameOrDerived = std::enable_if_t<! std::is_base_of_v< A, std::remove_reference_t< B > > > |
Can be used to disable template constructors that would otherwise cause ambiguity with compiler-generated copy and move constructors. | |
Functions | |
template<typename EnumType , std::enable_if_t< std::is_enum_v< EnumType >, int > = 0> | |
constexpr bool | hasBitValueSet (EnumType enumValue, EnumType valueToLookFor) noexcept |
template<typename EnumType , std::enable_if_t< std::is_enum_v< EnumType >, int > = 0> | |
constexpr EnumType | withBitValueSet (EnumType enumValue, EnumType valueToAdd) noexcept |
template<typename EnumType , std::enable_if_t< std::is_enum_v< EnumType >, int > = 0> | |
constexpr EnumType | withBitValueCleared (EnumType enumValue, EnumType valueToRemove) noexcept |
template<typename Object , typename OtherObject , typename Member , typename Other > | |
Object | withMember (Object copy, Member OtherObject::*member, Other &&value) |
Copies an object, sets one of the copy's members to the specified value, and then returns the copy. | |
template<typename Fn > | |
ScopeGuard (Fn) -> ScopeGuard< Fn > | |
#define JUCE_DECLARE_SCOPED_ENUM_BITWISE_OPERATORS | ( | EnumType | ) |
Macro to enable bitwise operations for scoped enums (enum struct/class).
To use this, add the line JUCE_DECLARE_SCOPED_ENUM_BITWISE_OPERATORS (MyEnum) after your enum declaration at file scope level.
e.g.
using DisableIfSameOrDerived = std::enable_if_t<! std::is_base_of_v<A, std::remove_reference_t<B> >> |
Can be used to disable template constructors that would otherwise cause ambiguity with compiler-generated copy and move constructors.
Adapted from https://ericniebler.com/2013/08/07/universal-references-and-the-copy-constructo/
|
constexprnoexcept |
|
constexprnoexcept |
|
constexprnoexcept |
Object withMember | ( | Object | copy, |
Member OtherObject::* | member, | ||
Other && | value | ||
) |
Copies an object, sets one of the copy's members to the specified value, and then returns the copy.
Referenced by MessageBoxOptions::withAssociatedComponent(), AudioProcessorParameterWithIDAttributes::withAutomatable(), AudioProcessorValueTreeStateParameterAttributes::withAutomatable(), RangedAudioParameterAttributes< Derived, Value >::withAutomatable(), WebBrowserComponent::Options::withBackend(), WebBrowserComponent::Options::WinWebView2::withBackgroundColour(), AudioProcessorValueTreeStateParameterAttributes::withBoolean(), WebBrowserComponent::Options::WinWebView2::withBuiltInErrorPageDisabled(), AudioProcessorParameterWithIDAttributes::withCategory(), AudioProcessorValueTreeStateParameterAttributes::withCategory(), RangedAudioParameterAttributes< Derived, Value >::withCategory(), AudioProcessorValueTreeStateParameterAttributes::withDiscrete(), WebBrowserComponent::Options::WinWebView2::withDLLLocation(), MessageBoxOptions::withIconType(), AudioProcessorParameterWithIDAttributes::withInverted(), AudioProcessorValueTreeStateParameterAttributes::withInverted(), RangedAudioParameterAttributes< Derived, Value >::withInverted(), WebBrowserComponent::Options::withKeepPageLoadedWhenBrowserIsHidden(), AudioProcessorParameterWithIDAttributes::withLabel(), AudioProcessorValueTreeStateParameterAttributes::withLabel(), RangedAudioParameterAttributes< Derived, Value >::withLabel(), MessageBoxOptions::withMessage(), AudioProcessorParameterWithIDAttributes::withMeta(), AudioProcessorValueTreeStateParameterAttributes::withMeta(), RangedAudioParameterAttributes< Derived, Value >::withMeta(), MessageBoxOptions::withParentComponent(), WebBrowserComponent::Options::WinWebView2::withStatusBarDisabled(), AudioProcessorValueTreeStateParameterAttributes::withStringFromValueFunction(), RangedAudioParameterAttributes< Derived, Value >::withStringFromValueFunction(), MessageBoxOptions::withTitle(), WebBrowserComponent::Options::withUserAgent(), WebBrowserComponent::Options::WinWebView2::withUserDataFolder(), AudioProcessorValueTreeStateParameterAttributes::withValueFromStringFunction(), RangedAudioParameterAttributes< Derived, Value >::withValueFromStringFunction(), and WebBrowserComponent::Options::withWinWebView2Options().
ScopeGuard | ( | Fn | ) | -> ScopeGuard< Fn > |