OpenShot Library | OpenShotAudio
0.2.2
|
Classes | |
struct | juce::ArgumentList::Argument |
One of the arguments in an ArgumentList. More... | |
struct | juce::ArgumentList |
Holds a list of command-line arguments, and provides useful methods for searching and operating on them. More... | |
struct | juce::ConsoleApplication::Command |
Represents a command that can be executed if its command-line arguments are matched. More... | |
struct | juce::ConsoleApplication |
Represents a the set of commands that a console app can perform, and provides helper functions for performing them. More... | |
class | juce::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 | juce::RuntimePermissions |
Class to handle app runtime permissions for certain functionality on some platforms. More... | |
class | juce::Uuid |
A universally unique 128-bit identifier. More... | |
class | juce::WindowsRegistry |
Contains some static helper functions for manipulating the MS Windows registry (Only available on Windows, of course!) More... | |
struct juce::ConsoleApplication::Command |
Represents a command that can be executed if its command-line arguments are matched.
Definition at line 250 of file juce_ConsoleApplication.h.
Class Members | ||
---|---|---|
String | commandOption |
The option string that must appear in the argument list for this command to be invoked. This can also be a list of different versions separated by pipes, e.g. "--help|-h" |
String | argumentDescription | A description of the command-line arguments needed for this command, which will be printed as part of the help text. |
String | shortDescription | A short (one line) description of this command, which can be printed by ConsoleApplication::printCommandList(). |
String | longDescription | A longer description of this command, for use in extended help. |
function< void(const ArgumentList &)> |
command | The actual command that should be invoked to perform this action. |