Mozzi  version v2.0
sound synthesis library for Arduino
MozziHeadersOnly.h
Go to the documentation of this file.
1 /*
2  * MozziHeadersOnly.h
3  *
4  * This file is part of Mozzi.
5  *
6  * Copyright 2023-2024 Tim Barrass and the Mozzi Team
7  *
8  * Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
9  *
10  */
11 
12 /** @ingroup core
13  * @file MozziHeadersOnly.h
14  *
15  * This file provides declarations of the \ref core Mozzi functions, but no implementation. Use this only, if you have more than one
16  * translation unit in your project (i.e. you have more than one .cpp-file in your sketch itself). Otherwise include \ref Mozzi.h, instead.
17  *
18  * (Failure to head this advice will lead to "symbol XY undefined" errors.).
19  */
20 
21 #ifndef MOZZI_HEADERS_ONLY_H_
22 #define MOZZI_HEADERS_ONLY_H_
23 
24 #define _MOZZI_HEADER_ONLY
25 #include "MozziGuts.h"
26 
27 #endif