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.

juce_data_structures.h 2.3KB

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