Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.0KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE 6 technical preview.
  4. Copyright (c) 2020 - Raw Material Software Limited
  5. You may use this code under the terms of the GPL v3
  6. (see www.gnu.org/licenses).
  7. For this technical preview, this file is not subject to commercial licensing.
  8. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  9. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  10. DISCLAIMED.
  11. ==============================================================================
  12. */
  13. /*******************************************************************************
  14. The block below describes the properties of this module, and is read by
  15. the Projucer to automatically generate project code that uses it.
  16. For details about the syntax and how to create or use a module, see the
  17. JUCE Module Format.txt file.
  18. BEGIN_JUCE_MODULE_DECLARATION
  19. ID: juce_data_structures
  20. vendor: juce
  21. version: 6.0.0
  22. name: JUCE data model helper classes
  23. description: Classes for undo/redo management, and smart data structures.
  24. website: http://www.juce.com/juce
  25. license: GPL/Commercial
  26. dependencies: juce_events
  27. END_JUCE_MODULE_DECLARATION
  28. *******************************************************************************/
  29. #pragma once
  30. #define JUCE_DATA_STRUCTURES_H_INCLUDED
  31. //==============================================================================
  32. #include <juce_events/juce_events.h>
  33. #include "undomanager/juce_UndoableAction.h"
  34. #include "undomanager/juce_UndoManager.h"
  35. #include "values/juce_Value.h"
  36. #include "values/juce_ValueTree.h"
  37. #include "values/juce_ValueTreeSynchroniser.h"
  38. #include "values/juce_CachedValue.h"
  39. #include "values/juce_ValueWithDefault.h"
  40. #include "app_properties/juce_PropertiesFile.h"
  41. #include "app_properties/juce_ApplicationProperties.h"