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

9 years ago
8 years ago
9 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. /*******************************************************************************
  18. The block below describes the properties of this module, and is read by
  19. the Projucer to automatically generate project code that uses it.
  20. For details about the syntax and how to create or use a module, see the
  21. JUCE Module Format.txt file.
  22. BEGIN_JUCE_MODULE_DECLARATION
  23. ID: juce_data_structures
  24. vendor: juce
  25. version: 4.3.1
  26. name: JUCE data model helper classes
  27. description: Classes for undo/redo management, and smart data structures.
  28. website: http://www.juce.com/juce
  29. license: GPL/Commercial
  30. dependencies: juce_events
  31. END_JUCE_MODULE_DECLARATION
  32. *******************************************************************************/
  33. #ifndef JUCE_DATA_STRUCTURES_H_INCLUDED
  34. #define JUCE_DATA_STRUCTURES_H_INCLUDED
  35. //==============================================================================
  36. #include <juce_events/juce_events.h>
  37. namespace juce
  38. {
  39. #include "undomanager/juce_UndoableAction.h"
  40. #include "undomanager/juce_UndoManager.h"
  41. #include "values/juce_Value.h"
  42. #include "values/juce_ValueTree.h"
  43. #include "values/juce_ValueTreeSynchroniser.h"
  44. #include "values/juce_CachedValue.h"
  45. #include "app_properties/juce_PropertiesFile.h"
  46. #include "app_properties/juce_ApplicationProperties.h"
  47. }
  48. #endif // JUCE_DATA_STRUCTURES_H_INCLUDED