-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDmtHeader.h
More file actions
28 lines (28 loc) · 1.14 KB
/
DmtHeader.h
File metadata and controls
28 lines (28 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//==============================================================================
/**
* @file DmtHeader.h
* @brief Dimethoxy (DMT) Library - A comprehensive collection of internal
* components and utilities for audio plug-in development.
*
* @details This library is exclusively designed for our plugins and is not
* intended for external use. This file serves as a convenience header,
* including all the headers in the library.
*
* @copyright 2024 Dimethoxy Audio
*
* @author Lunix-420
*/
//==============================================================================
#pragma once
//==============================================================================
#include "../melatonin_perfetto/melatonin_perfetto/melatonin_perfetto.h"
//==============================================================================
#include "./app/App.h"
#include "./configuration/Configuration.h"
#include "./dsp/Dsp.h"
#include "./gui/Gui.h"
#include "./model/Model.h"
#include "./theme/Theme.h"
#include "./utility/Utility.h"
#include "./version/Version.h"
//==============================================================================