OpenShot Audio Library | OpenShotAudio 0.4.0
 
Loading...
Searching...
No Matches
juce_data_structures.cpp
1/*
2 ==============================================================================
3
4 This file is part of the JUCE library.
5 Copyright (c) 2022 - Raw Material Software Limited
6
7 JUCE is an open source library subject to commercial or open-source
8 licensing.
9
10 By using JUCE, you agree to the terms of both the JUCE 7 End-User License
11 Agreement and JUCE Privacy Policy.
12
13 End User License Agreement: www.juce.com/juce-7-licence
14 Privacy Policy: www.juce.com/juce-privacy-policy
15
16 Or: You may also use this code under the terms of the GPL v3 (see
17 www.gnu.org/licenses).
18
19 JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
20 EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
21 DISCLAIMED.
22
23 ==============================================================================
24*/
25
26#ifdef JUCE_DATA_STRUCTURES_H_INCLUDED
27 /* When you add this cpp file to your project, you mustn't include it in a file where you've
28 already included any other headers - just put it inside a file on its own, possibly with your config
29 flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
30 header files that the compiler may be using.
31 */
32 #error "Incorrect use of JUCE cpp file"
33#endif
34
35#include "juce_data_structures.h"
36
37#include "values/juce_Value.cpp"
38#include "values/juce_ValueTree.cpp"
39#include "values/juce_ValueTreeSynchroniser.cpp"
40#include "values/juce_CachedValue.cpp"
41#include "undomanager/juce_UndoManager.cpp"
42#include "undomanager/juce_UndoableAction.cpp"
43#include "app_properties/juce_ApplicationProperties.cpp"
44#include "app_properties/juce_PropertiesFile.cpp"
45
46#if JUCE_UNIT_TESTS
47 #include "values/juce_ValueTreePropertyWithDefault_test.cpp"
48#endif