tracktion-engine
3.0-10-g034fdde4aa5
Tracktion Engine — High level data model for audio applications
« « « Anklang Documentation
Loading...
Searching...
No Matches
tracktion_core
tracktion_core.cpp
Go to the documentation of this file.
1
/*
2
,--. ,--. ,--. ,--.
3
,-' '-.,--.--.,--,--.,---.| |,-.,-' '-.`--' ,---. ,--,--, Copyright 2024
4
'-. .-'| .--' ,-. | .--'| /'-. .-',--.| .-. || \ Tracktion Software
5
| | | | \ '-' \ `--.| \ \ | | | |' '-' '| || | Corporation
6
`---' `--' `--`--'`---'`--'`--' `---' `--' `---' `--''--' www.tracktion.com
7
8
Tracktion Engine uses a GPL/commercial licence - see LICENCE.md for details.
9
*/
10
11
#ifdef TRACKTION_CORE_H_INCLUDED
12
/* When you add this cpp file to your project, you mustn't include it in a file where you've
13
already included any other headers - just put it inside a file on its own, possibly with your config
14
flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
15
header files that the compiler may be using.
16
*/
17
#error "Incorrect use of JUCE cpp file"
18
#endif
19
20
21
//==============================================================================
22
#include <
juce_audio_formats/juce_audio_formats.h
>
23
24
using namespace
std::literals
;
25
26
#ifdef __GNUC__
27
#pragma GCC diagnostic push
28
#pragma GCC diagnostic ignored "-Wfloat-equal"
29
#endif
30
31
//==============================================================================
32
#include "
tracktion_TestConfig.h
"
33
#include "
utilities/tracktion_Benchmark.h
"
34
35
//==============================================================================
36
#include "
tracktion_core.h
"
37
38
//==============================================================================
39
//#include "utilities/tracktion_AlgorithmAdapters.test.cpp"
40
//#include "utilities/tracktion_Tempo.test.cpp"
41
//#include "utilities/tracktion_Time.test.cpp"
42
//#include "utilities/tracktion_TimeRange.test.cpp"
43
44
#ifdef __GNUC__
45
#pragma GCC diagnostic pop
46
#pragma GCC diagnostic ignored "-Wfloat-equal"
47
#endif
juce_audio_formats.h
std::literals
tracktion_Benchmark.h
tracktion_TestConfig.h
tracktion_core.h
« « « Anklang Documentation