├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md └── Source ├── Automation.cpp ├── Automation.h ├── CLICommand.h ├── ListParametersCommand.cpp ├── ListParametersCommand.h ├── PresetLoadingExtensionsVisitor.cpp ├── PresetLoadingExtensionsVisitor.h ├── ProcessCommand.cpp ├── ProcessCommand.h ├── Utils.cpp ├── Utils.h └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/README.md -------------------------------------------------------------------------------- /Source/Automation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/Automation.cpp -------------------------------------------------------------------------------- /Source/Automation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/Automation.h -------------------------------------------------------------------------------- /Source/CLICommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/CLICommand.h -------------------------------------------------------------------------------- /Source/ListParametersCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/ListParametersCommand.cpp -------------------------------------------------------------------------------- /Source/ListParametersCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/ListParametersCommand.h -------------------------------------------------------------------------------- /Source/PresetLoadingExtensionsVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/PresetLoadingExtensionsVisitor.cpp -------------------------------------------------------------------------------- /Source/PresetLoadingExtensionsVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/PresetLoadingExtensionsVisitor.h -------------------------------------------------------------------------------- /Source/ProcessCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/ProcessCommand.cpp -------------------------------------------------------------------------------- /Source/ProcessCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/ProcessCommand.h -------------------------------------------------------------------------------- /Source/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/Utils.cpp -------------------------------------------------------------------------------- /Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/Utils.h -------------------------------------------------------------------------------- /Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrushedPixel/Plugalyzer/HEAD/Source/main.cpp --------------------------------------------------------------------------------